Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
StasJ committed Jul 7, 2021
1 parent f8d6710 commit ca61c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/vaporgui/CheckForNotices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void CheckForGHNotices(std::function<void(const std::vector<Notice> &)> callback
Notice notice;
notice.url = file["download_url"].toString().toStdString();

if (!STLUtils::Contains(notice.url, "__example-notice")) continue;
if (STLUtils::Contains(notice.url, "__example-notice")) continue;

_noticesToGet.push(notice);
}
Expand Down

0 comments on commit ca61c4d

Please sign in to comment.