forked from rojo-rbx/rojo
Make all file contents be Arc<Vec<u8>> instead of &[u8]
This commit is contained in:
@@ -33,7 +33,7 @@ impl SnapshotMiddleware for SnapshotJsonModel {
|
||||
};
|
||||
|
||||
let instance: JsonModel =
|
||||
serde_json::from_slice(entry.contents(vfs)?).expect("TODO: Handle serde_json errors");
|
||||
serde_json::from_slice(&entry.contents(vfs)?).expect("TODO: Handle serde_json errors");
|
||||
|
||||
if let Some(json_name) = &instance.name {
|
||||
if json_name != &instance_name {
|
||||
|
||||
Reference in New Issue
Block a user