Skip to content

Commit

Permalink
Fixed the example 'Web Resource'
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Jun 30, 2017
1 parent f8b3b46 commit 75ff834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/v2/webResource/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class WebFileSystemSerializer implements v2.FileSystemSerializer
unserialize(serializedData : any, callback : v2.ReturnCallback<WebFileSystem>) : void
{
const fs = new WebFileSystem(serializedData.url);
fs.props = serializedData.props;
fs.props = new v2.LocalPropertyManager(serializedData.props);
callback(null, fs);
}
}
Expand Down

0 comments on commit 75ff834

Please sign in to comment.