We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d787c commit 41161dcCopy full SHA for 41161dc
src/main.cpp
@@ -10,7 +10,7 @@
10
11
WUPS_PLUGIN_NAME("UTag");
12
WUPS_PLUGIN_DESCRIPTION("Display the titles you play on your tag!");
13
-WUPS_PLUGIN_VERSION("v1.1");
+WUPS_PLUGIN_VERSION("v1.0.1");
14
WUPS_PLUGIN_AUTHOR("twosecslater");
15
WUPS_PLUGIN_LICENSE("GPLv3");
16
@@ -40,6 +40,7 @@ ON_APPLICATION_START(args) {
40
CURL *curl = curl_easy_init();
41
CURLcode ec;
42
curl_easy_setopt(curl, CURLOPT_URL, tagURL);
43
+ curl_easy_setopt(curl, CURLOPT_TIMEOUT, 5L);
44
ec = curl_easy_perform(curl);
45
if(ec != CURLE_OK) {
46
DEBUG_FUNCTION_LINE("curl failed with exit code %s", curl_easy_strerror(ec));
0 commit comments