Skip to content

Commit

Permalink
Fixed moved value
Browse files Browse the repository at this point in the history
  • Loading branch information
CEbbinghaus committed Sep 26, 2024
1 parent 116b91a commit 6c09e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/watch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn find_mount_name() -> Result<Option<String>, Error> {

info!(mount = mount_name, "Found MicroSD Card mount label");

if !has_libraryfolder(&Some(mount_name)) {
if !has_libraryfolder(&Some(mount_name.clone())) {
warn!(
mount = mount_name,
"Mount point does not resolve library folder"
Expand Down

0 comments on commit 6c09e76

Please sign in to comment.