mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-25 03:16:51 +01:00
Pebble: allow pbw installation with appinfo.json files up to 64k (was 8k)
Fixes DIN watchface installation
This commit is contained in:
parent
87739d94db
commit
0c805809a5
@ -186,7 +186,7 @@ public class PBWReader {
|
|||||||
|
|
||||||
} else if (fileName.equals("appinfo.json")) {
|
} else if (fileName.equals("appinfo.json")) {
|
||||||
long bytes = ze.getSize();
|
long bytes = ze.getSize();
|
||||||
if (bytes > 8192) // that should be too much
|
if (bytes > 65536) // that should be too much
|
||||||
break;
|
break;
|
||||||
|
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
|
Loading…
Reference in New Issue
Block a user