mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
467 B
C++
23 lines
467 B
C++
|
#include "providers/twitch/twitchhelpers.hpp"
|
||
|
#include "debug/log.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace providers {
|
||
|
namespace twitch {
|
||
|
|
||
|
bool TrimChannelName(const QString &channelName, QString &outChannelName)
|
||
|
{
|
||
|
if (channelName.length() < 3) {
|
||
|
debug::Log("channel name length below 2");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
outChannelName = channelName.mid(1);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
} // namespace twitch
|
||
|
} // namespace providers
|
||
|
} // namespace chatterino
|