summaryrefslogtreecommitdiff
path: root/src/streamml/back
diff options
context:
space:
mode:
authorEnricoGuccii <partyka.003@proton.me>2026-01-10 23:34:46 +0100
committerEnricoGuccii <partyka.003@proton.me>2026-01-10 23:34:46 +0100
commit416c7e18c9e465cf044556362321672e5007a52c (patch)
treecdfcd11ba74ec29c3f5c314c1c9e5fdb65f3092e /src/streamml/back
parent6d7410e286ce0fde31f89185c095fe90e85597f3 (diff)
fixed results path
Diffstat (limited to 'src/streamml/back')
-rw-r--r--src/streamml/back/detector_profile_HST.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streamml/back/detector_profile_HST.py b/src/streamml/back/detector_profile_HST.py
index 6583769..31f164a 100644
--- a/src/streamml/back/detector_profile_HST.py
+++ b/src/streamml/back/detector_profile_HST.py
@@ -13,8 +13,8 @@ from .window import Window
from .notification_service import notification_service
XDG_DATA_HOME = Path(os.environ.get("XDG_DATA_HOME", Path.home() / ".local/share"))
-LOGS_PATH = f"{XDG_DATA_HOME}/netmonitor/detector/profiles_logs"
-PCAP_PATH = f"{XDG_DATA_HOME}/netmonitor/detector/profiles_pcaps"
+LOGS_PATH = f"{XDG_DATA_HOME}/streamml/profiles_logs"
+PCAP_PATH = f"{XDG_DATA_HOME}/streamml/profiles_pcaps"
class DetectorProfileHST: