mirror-chatterino2/src/util/Twitch.cpp

13 lines
303 B
C++
Raw Normal View History

#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