Skip to content

Commit

Permalink
VirtualContentProvider: fix remote config loading
Browse files Browse the repository at this point in the history
  • Loading branch information
x0b committed Jul 13, 2021
1 parent 9dee1f6 commit a936ac7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ synchronized void reloadRemotesIfRequired() {
if (lastModified > configModifiedTimestamp) {
configModifiedTimestamp = lastModified;
FLog.d(TAG, "reloadRemotesIfRequired(): requesting new remote config data");
Set<String> oldRemotes = remotes.keySet();
Set<String> oldRemotes = new HashSet<>(remotes.keySet());
for (RemoteItem remoteItem : rclone.getRemotes()) {
remotes.put(remoteItem.getName(), remoteItem);
}
Expand Down

0 comments on commit a936ac7

Please sign in to comment.