From 8f60377d63efe7c088f68496333d24f3d2cf5044 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 28 Oct 2019 20:17:20 +0100 Subject: [PATCH] Add support for iOS-style quotation marks --- PluralKit.Bot/CommandSystem/Parameters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/CommandSystem/Parameters.cs b/PluralKit.Bot/CommandSystem/Parameters.cs index eccafa46..185cdf9a 100644 --- a/PluralKit.Bot/CommandSystem/Parameters.cs +++ b/PluralKit.Bot/CommandSystem/Parameters.cs @@ -7,7 +7,7 @@ namespace PluralKit.Bot.CommandSystem { private static readonly Dictionary _quotePairs = new Dictionary() { - {'\'', '\''}, {'"', '"'} + {'\'', '\''}, {'"', '"'}, {'“', '”'} }; private readonly string _cmd;