Missing start of line for the i regex

This commit is contained in:
barelyprofessional
2026-05-15 22:37:24 -05:00
parent d9ba821b88
commit e17f525142
+1 -1
View File
@@ -305,7 +305,7 @@ public class GetRandomImage : ICommand
new Regex(@"^(?<key>\w+)$"),
new Regex(@"^(?<key>\w+) (?<search>.+)"),
new Regex("^untagged$", RegexOptions.IgnoreCase),
new Regex("i (?<search>.+)")
new Regex("^i (?<search>.+)")
];
public string HelpText => "Get a random image";
public UserRight RequiredRight => UserRight.Loser;