rename #2
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#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 3");
|
||||
return false;
|
||||
}
|
||||
|
||||
outChannelName = channelName.mid(1);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
} // namespace twitch
|
||||
} // namespace providers
|
||||
} // namespace chatterino
|
||||
Reference in New Issue
Block a user