mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-02-17 12:21:56 +01:00
Handle null image in MySQL
This commit is contained in:
parent
082878aade
commit
dc66d12916
@ -137,7 +137,11 @@ public class MySQLMapStorage extends MapStorage {
|
||||
rslt.format = MapType.ImageEncoding.fromOrd(rs.getInt("Format"));
|
||||
byte[] img = rs.getBytes("NewImage");
|
||||
if (img == null) img = rs.getBytes("Image");
|
||||
rslt.image = new BufferInputStream(img);
|
||||
if (img == null) {
|
||||
rslt = null;
|
||||
} else {
|
||||
rslt.image = new BufferInputStream(img);
|
||||
}
|
||||
}
|
||||
rs.close();
|
||||
stmt.close();
|
||||
|
Loading…
Reference in New Issue
Block a user