Files
chatterino2/src/util/Twitch.cpp
2020-05-10 12:45:19 +02:00

13 lines
303 B
C++

#include "util/Twitch.hpp"
#include <QDesktopServices>
namespace chatterino {
void openTwitchUsercard(QString channel, QString username)
{
QDesktopServices::openUrl("https://www.twitch.tv/popout/" + channel +
"/viewercard/" + username);
}
} // namespace chatterino