summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/warp/src/container/network.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/warp/src/container/network.rs b/plugins/warp/src/container/network.rs
index db935a5e..9630d832 100644
--- a/plugins/warp/src/container/network.rs
+++ b/plugins/warp/src/container/network.rs
@@ -251,6 +251,8 @@ impl Container for NetworkContainer {
.map_err(|_| CannotCreateSource(path))?;
// Must probe the source before attempting to access it, as it does not exist locally.
self.probe_source(source);
+ // Adding a source inherently makes it writable, so we add it to the set of writable sources.
+ self.writable_sources.insert(source);
Ok(source)
}