mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
13 lines
218 B
C++
13 lines
218 B
C++
|
#include "providers/ffz/FfzUtil.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
Url parseFfzUrl(const QString &ffzUrl)
|
||
|
{
|
||
|
QUrl asURL(ffzUrl);
|
||
|
asURL.setScheme("https");
|
||
|
return {asURL.toString()};
|
||
|
}
|
||
|
|
||
|
} // namespace chatterino
|