(remote string)
| 1870 | } |
| 1871 | |
| 1872 | func (f *Fs) isNotifiedRemote(remote string) bool { |
| 1873 | f.notifiedMu.Lock() |
| 1874 | defer f.notifiedMu.Unlock() |
| 1875 | |
| 1876 | n, ok := f.notifiedRemotes[remote] |
| 1877 | if !ok || !n { |
| 1878 | return false |
| 1879 | } |
| 1880 | |
| 1881 | delete(f.notifiedRemotes, remote) |
| 1882 | return n |
| 1883 | } |
| 1884 | |
| 1885 | func cleanPath(p string) string { |
| 1886 | p = path.Clean(p) |