fix resource loading

This commit is contained in:
Daniella / Tove 2022-07-13 14:44:46 +02:00
parent 511ba3dbe6
commit fd83813ecf

View file

@ -148,13 +148,14 @@ public class BrowserContext {
return builder.toString();
}
stream = new FileInputStream(file);
}
int i = 0;
while((i = stream.read()) != -1) {
builder.append((char) i);
}
stream.close();
}
if(!TryConfig.nocache)
cache.put(file, builder.toString());
@ -183,6 +184,8 @@ public class BrowserContext {
return builder.toString();
}
stream = new FileInputStream(file);
}
ByteArrayOutputStream s = new ByteArrayOutputStream();
int i = 0;
@ -193,7 +196,6 @@ public class BrowserContext {
stream.close();
s.close();
st = new String(s.toByteArray());
}
if(!TryConfig.nocache)
cache.put(file, st);
} catch (IOException e) {