Fix subscription cache clearing after subscription changes
This commit is contained in:
parent
17e6662a23
commit
b32c36f58f
1 changed files with 2 additions and 2 deletions
|
@ -1198,7 +1198,7 @@ class kolab_storage
|
|||
}
|
||||
}
|
||||
else if (self::$imap->subscribe($folder)) {
|
||||
self::$subscriptions === null;
|
||||
self::$subscriptions = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1226,7 +1226,7 @@ class kolab_storage
|
|||
return true;
|
||||
}
|
||||
else if (self::$imap->unsubscribe($folder)) {
|
||||
self::$subscriptions === null;
|
||||
self::$subscriptions = null;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue