diff options
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 4a5d57b..a6471a6 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2490,7 +2490,7 @@ class SlackThreadChannel(SlackChannelCommon): return name else: indent_expr = w.config_string(w.config_get("buflist.format.indent")) - indent = w.string_eval_expression(indent_expr, {}, {}, {}) + indent = w.string_eval_expression(indent_expr, {}, {"slack_thread": "1"}, {}) return "{}{}${}".format(indent, w.color("default"), name) elif style == "long_default": if self.label_full_drop_prefix: |