<div dir="ltr"><div>Hi Walter,<br><br></div>the updater crash seems to be a bug in your code<br><br>It looks like you should use get_data to get a python array from GBytes. (unref_to_array shouldn't really be exposed in python)<br>
<br>diff --git a/extensions/cpsection/updater/backends/aslo.py b/extensions/cpsectio<br>index e244af0..7c41ae6 100644<br>--- a/extensions/cpsection/updater/backends/aslo.py<br>+++ b/extensions/cpsection/updater/backends/aslo.py<br>
@@ -116,7 +116,7 @@ class _UpdateFetcher(object):<br>             self._process_result()<br>             return<br>         else:<br>-            xml_data = data.unref_to_array()<br>+            xml_data = data.get_data()<br>
             self._xml_data += str(xml_data)<br> <br>         stream.read_bytes_async(self._CHUNK_SIZE, GLib.PRIORITY_DEFAULT, None,<br><br><br clear="all"><div><div><div><br>-- <br>Daniel Narvaez<br>
</div></div></div></div>