fix cookie parsing bug, fix filters bug

This commit is contained in:
jonathan santis
2024-11-26 13:33:50 +01:00
parent 875a8fd18e
commit 1de1574bd2
3 changed files with 9 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ def findDefaultProfile(path):
posDot = ms.skipAfterChar(directory,'.')
stringParse = ms.dropBeforePos(directory,posDot)
log(stringParse)
if stringParse == "default":
if stringParse == "default-release":
target = directory
break;
if target == '':