From 3e4fb6383e8a405ad5ed2b1d47502c75bd8d42de Mon Sep 17 00:00:00 2001 From: feederbox826 Date: Wed, 27 Nov 2024 01:09:20 -0500 Subject: [PATCH] [tsTrade] add missing config value, remove nested quote for py3.11 users --- plugins/timestampTrade/timestampTrade.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/timestampTrade/timestampTrade.py b/plugins/timestampTrade/timestampTrade.py index 005eec09..c4de6645 100644 --- a/plugins/timestampTrade/timestampTrade.py +++ b/plugins/timestampTrade/timestampTrade.py @@ -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: @@ -1331,6 +1331,7 @@ def excluded_marker_tag(marker): "submitFunscriptHash": True, "excludedMarkerWords": "", "matchFunscripts": True, + "addTsTradeTag": False, "addTsTradeTitle": False, } if "timestampTrade" in config["plugins"]: