Favorite lists #654

Merged
konrad merged 7 commits from feature/favorite-lists into master 2020-09-06 14:20:18 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 19f50e81be - Show all commits

View File

@ -468,7 +468,7 @@ func GenerateListIdentifier(l *List, sess *xorm.Engine) (err error) {
func CreateOrUpdateList(list *List) (err error) {
// Check if the namespace exists
if list.NamespaceID != 0 {
if list.NamespaceID != 0 && list.NamespaceID != FavoritesPseudoNamespace.ID {
_, err = GetNamespaceByID(list.NamespaceID)
if err != nil {
return err