Skip to content

Commit

Permalink
[tsTrade] add missing config value, remove nested quote for py3.11 users
Browse files Browse the repository at this point in the history
  • Loading branch information
feederbox826 committed Nov 27, 2024
1 parent 2910de6 commit 3e4fb63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/timestampTrade/timestampTrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def processSceneTimestamTrade(s):
marker["primary_tag"] = m["name"]

if settings["addTsTradeTitle"]:
marker["title"] = f"[TsTrade] {m["name"]}"
marker["title"] = f"[TsTrade] {m['name']}"

# check for markers with a zero length title, skip adding
if len(marker["primary_tag"]) == 0:
Expand Down Expand Up @@ -1331,6 +1331,7 @@ def excluded_marker_tag(marker):
"submitFunscriptHash": True,
"excludedMarkerWords": "",
"matchFunscripts": True,
"addTsTradeTag": False,
"addTsTradeTitle": False,
}
if "timestampTrade" in config["plugins"]:
Expand Down

0 comments on commit 3e4fb63

Please sign in to comment.