We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81916fe commit b064c8bCopy full SHA for b064c8b
autoTatort.py
@@ -234,7 +234,7 @@ def checkForHDFile(url):
234
if quality == -1 and "960" in mediaURL:
235
mediaURL = checkForHDFile(mediaURL)
236
237
- fileName = "".join([x if x.isalnum() or x in "- " else "" for x in title])
+ fileName = "".join([x if x.isalnum() or x in ",- " else "" for x in title])
238
239
if titlePrependItemDate == 1:
240
fileName = str(itemDate) + " - " + fileName
config.json.sample
@@ -36,6 +36,9 @@
36
}
37
],
38
"titleFilters": [
39
+ {
40
+ "replace": ","
41
+ },
42
{
43
"replace": " (Video tgl. ab 22 Uhr)"
44
},
0 commit comments