From 757f61d890dcbba3ede551a1577eba0a2c789c6d Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 17 Apr 2020 16:51:01 +0200 Subject: [PATCH] [Thumbnail] Fix info size --- lib/src/room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/room.dart b/lib/src/room.dart index 0a7cc655..a87f88ef 100644 --- a/lib/src/room.dart +++ b/lib/src/room.dart @@ -578,7 +578,7 @@ class Room { 'thumbnail_info': { 'h': thumbnailImage.height, 'mimetype': mimeType, - 'size': thumbnailImage.length, + 'size': thumbnail.size, 'w': thumbnailImage.width, } }