Skip to content

Commit

Permalink
Merge pull request #1153 from AppImage/feat/support_ocs_update_inform…
Browse files Browse the repository at this point in the history
…ation/1152

feat:  Allow pling.com as update source
  • Loading branch information
azubieta authored Nov 10, 2021
2 parents c9e0b67 + 5bec95b commit a2d9cfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/appimagetool.c
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,8 @@ main (int argc, char *argv[])
if(!g_str_has_prefix(updateinformation,"zsync|"))
if(!g_str_has_prefix(updateinformation,"bintray-zsync|"))
if(!g_str_has_prefix(updateinformation,"gh-releases-zsync|"))
die("The provided updateinformation is not in a recognized format");
if(!g_str_has_prefix(updateinformation,"pling-v1-zsync|"))
die("The provided updateinformation is not in a recognized format");

gchar **ui_type = g_strsplit_set(updateinformation, "|", -1);

Expand Down

0 comments on commit a2d9cfc

Please sign in to comment.