diff options
author | Damiano Galassi <[email protected]> | 2020-04-15 14:01:45 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2020-04-15 14:01:45 +0200 |
commit | 05c6916b321ec1c9ba17861210e46312f060ec35 (patch) | |
tree | 811cf40c5729791d00d92fe1ce0c3f1489ae60f4 | |
parent | b984d4b78b5fc7f92a27868e85427ccbab7342e9 (diff) |
MacGui: there is no need to update the core state each progress update.
-rw-r--r-- | macosx/HBRemoteCore.m | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/macosx/HBRemoteCore.m b/macosx/HBRemoteCore.m index 25902f6db..432eef871 100644 --- a/macosx/HBRemoteCore.m +++ b/macosx/HBRemoteCore.m @@ -245,7 +245,6 @@ dispatch_sync(dispatch_get_main_queue(), ^{ HBProgress progress = {currentProgress , hours, minutes, seconds}; - weakSelf.state = state; weakSelf.progressHandler(state, progress, info); }); } |