Don't panic on queries for nonexistent folders (fixes #765)

This commit is contained in:
Jakob Borg 2014-10-24 14:54:36 +02:00
parent 39a2934b05
commit d8b335ce65

View File

@ -1261,7 +1261,9 @@ func (m *Model) RemoteLocalVersion(folder string) uint64 {
fs, ok := m.folderFiles[folder]
if !ok {
panic("bug: LocalVersion called for nonexistent folder " + folder)
// The folder might not exist, since this can be called with a user
// specified folder name from the REST interface.
return 0
}
var ver uint64