Skip to content

Commit

Permalink
make tiktok detection less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
exeldro committed Aug 1, 2024
1 parent bd9ba66 commit 1c81467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ QIcon ConfigUtils::getPlatformIconFromEndpoint(QString endpoint)
return QIcon(":/aitum/media/youtube.png");
} else if (endpoint.contains(QString::fromUtf8("fa723fc1b171.global-contribute.live-video.net"))) { // kick
return QIcon(":/aitum/media/kick.png");
} else if (endpoint.contains(QString::fromUtf8(".tiktokcdn-"))) { // tiktok
} else if (endpoint.contains(QString::fromUtf8(".tiktokcdn"))) { // tiktok
return QIcon(":/aitum/media/tiktok.png");
} else if (endpoint.contains(QString::fromUtf8(".pscp.tv"))) { // twitter
return QIcon(":/aitum/media/twitter.png");
Expand Down

0 comments on commit 1c81467

Please sign in to comment.