# HG changeset patch # User Goffi # Date 1585778340 -7200 # Node ID 2cfb9f7a6b622e6bc2cb16d6d4c40fe36215c34e # Parent 642cd2435e26b4c195ca07b0f9ac4a7171a8841e platform (base): call again "open_url" after decrypting a file: "open_url" is called again instead of directly _open, because it can call a platform specific open which can work now that the file has been decrypted. diff -r 642cd2435e26 -r 2cfb9f7a6b62 cagou/core/platform_/base.py --- a/cagou/core/platform_/base.py Wed Apr 01 23:59:00 2020 +0200 +++ b/cagou/core/platform_/base.py Wed Apr 01 23:59:00 2020 +0200 @@ -123,7 +123,7 @@ G.host.errback(exceptions.InternalError(msg)) return G.host.downloadURL( - parsed_url, self._open, G.host.errback, profile=quick_widget.profile + parsed_url, self.open_url, G.host.errback, profile=quick_widget.profile ) else: self._open(url)