diff options
Diffstat (limited to 'libdino/src')
-rw-r--r-- | libdino/src/service/avatar_storage.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdino/src/service/avatar_storage.vala b/libdino/src/service/avatar_storage.vala index a307fe66..d6bdd30e 100644 --- a/libdino/src/service/avatar_storage.vala +++ b/libdino/src/service/avatar_storage.vala @@ -45,7 +45,7 @@ public class AvatarStorage : Xep.PixbufStorage, Object { FileUtils.remove(file.get_path()); } stream.seek(0, SeekType.SET); - return yield new Pixbuf.from_stream_async(stream); + return yield new Pixbuf.from_stream_async(stream, null); } catch (Error e) { return null; } |