mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fix link regex (Thanks Cranken1337)
This commit is contained in:
parent
3010e6303a
commit
62a1148c02
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ MessageBuilder::MessageBuilder()
|
|||
: _words()
|
||||
{
|
||||
_parseTime = std::chrono::system_clock::now();
|
||||
regex.setPattern("[[:ascii:]]*\\.[A-Z]+\/[[:ascii:]]+");
|
||||
regex.setPattern("[[:ascii:]]*\.[A-Z]+\\/?[[:ascii:]]*");
|
||||
regex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue