We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d7f15 commit 0369441Copy full SHA for 0369441
dist/changes/1.4.1.md
@@ -5,6 +5,11 @@
5
# [Sky kit](http://omega.gg/Sky)
6
---
7
8
+## SkCore
9
+
10
+- WRemoteTimeout: Fix the 'timeout' function.
11
12
13
## SkGui
14
15
- WControllerPlaylist: Update the 'query' implementation.
src/SkCore/src/controllers/WControllerDownload.cpp
@@ -218,7 +218,11 @@ void WRemoteTimeout::onTimeout()
218
{
219
QNetworkReply * reply = qobject_cast<QNetworkReply *> (_data->_reply);
220
221
- reply->abort();
+ if (reply)
222
+ {
223
+ reply->abort();
224
+ }
225
+ else qWarning("WRemoteTimeout::onTimeout: Reply does not exist.");
226
}
227
228
void WRemoteTimeout::onLoaded()
0 commit comments