mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-23 03:35:03 -04:00
Fixed: No longer gives an Unauthorized error when calculating file hashes of UI resources.
This commit is contained in:
1 parent
96c1ceaa29
commit
20894b40cf
1 file changed
+1
-1
@@ -451,7 +451,7 @@ public FileStream StreamFile(string path)
|
||||
throw new FileNotFoundException("Unable to find file: " + path, path);
|
||||
}
|
||||
|
||||
return new FileStream(path, FileMode.Open);
|
||||
return new FileStream(path, FileMode.Open, FileAccess.Read);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in new issue
Block a user