mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Fix proper signal type for UpdateReport
Change the signal type in `UpdaterThread.check_for_updates()` from `dict` to `UpdateReport`. The `dict` parameter is stale and should have never been used.
This commit is contained in:
parent
17ecde3173
commit
77b380e7df
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class UpdaterThread(QtCore.QThread):
|
||||||
whoever has connected to it.
|
whoever has connected to it.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
finished = QtCore.Signal(dict)
|
finished = QtCore.Signal(UpdateReport)
|
||||||
|
|
||||||
GH_RELEASE_URL = (
|
GH_RELEASE_URL = (
|
||||||
"https://api.github.com/repos/freedomofpress/dangerzone/releases/latest"
|
"https://api.github.com/repos/freedomofpress/dangerzone/releases/latest"
|
||||||
|
|
Loading…
Reference in a new issue