Fixed bug where External Storage doesn't detect new inventory when rotating.

This commit is contained in:
raoulvdberge
2018-07-04 12:08:57 +02:00
parent 616020bb51
commit 542f2a61a9
2 changed files with 10 additions and 0 deletions

View File

@@ -96,6 +96,15 @@ public class NetworkNodeExternalStorage extends NetworkNode implements IStorageP
}
}
@Override
protected void onDirectionChanged() {
super.onDirectionChanged();
if (network != null) {
updateStorage(network);
}
}
@Override
public String getId() {
return ID;