MOBILE-2992 forum: Fix can add discussion WS invalidation

main
Albert Gasset 2019-05-07 13:09:55 +02:00
parent af28ed2732
commit b6e15defdd
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ export class AddonModForumProvider {
* @return {string} Cache key.
*/
protected getCanAddDiscussionCacheKey(forumId: number, groupId: number): string {
return this.getCommonCanAddDiscussionCacheKey(forumId) + ':' + groupId;
return this.getCommonCanAddDiscussionCacheKey(forumId) + groupId;
}
/**
@ -68,7 +68,7 @@ export class AddonModForumProvider {
* @return {string} Cache key.
*/
protected getCommonCanAddDiscussionCacheKey(forumId: number): string {
return this.ROOT_CACHE_KEY + 'canadddiscussion:' + forumId;
return this.ROOT_CACHE_KEY + 'canadddiscussion:' + forumId + ':';
}
/**