From 736522737f4dae39af126353abfe26903b2c82ea Mon Sep 17 00:00:00 2001 From: fiaxh Date: Wed, 13 Feb 2019 21:50:15 +0100 Subject: Make file read/write async --- libdino/src/service/avatar_storage.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdino/src/service/avatar_storage.vala') diff --git a/libdino/src/service/avatar_storage.vala b/libdino/src/service/avatar_storage.vala index 46b43d99..f40414d1 100644 --- a/libdino/src/service/avatar_storage.vala +++ b/libdino/src/service/avatar_storage.vala @@ -17,7 +17,7 @@ public class AvatarStorage : Xep.PixbufStorage, Object { try { if (file.query_exists()) file.delete(); //TODO y? DataOutputStream fos = new DataOutputStream(file.create(FileCreateFlags.REPLACE_DESTINATION)); - fos.write(data); + fos.write_async.begin(data); } catch (Error e) { // Ignore: we failed in storing, so we refuse to display later... } @@ -36,4 +36,4 @@ public class AvatarStorage : Xep.PixbufStorage, Object { } } } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf