mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
Chore: should not write file on file provider
This commit is contained in:
parent
3a3e2c05af
commit
6c7a8fffe0
@ -74,8 +74,10 @@ func (f *fetcher) Initial() (interface{}, error) {
|
||||
}
|
||||
}
|
||||
|
||||
if err := safeWrite(f.vehicle.Path(), buf); err != nil {
|
||||
return nil, err
|
||||
if f.vehicle.Type() != File {
|
||||
if err := safeWrite(f.vehicle.Path(), buf); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
f.hash = md5.Sum(buf)
|
||||
|
Loading…
Reference in New Issue
Block a user