diff --git a/src/addons/notifications/pages/notification/notification.html b/src/addons/notifications/pages/notification/notification.html
index 48c8d4e9d..20810a578 100644
--- a/src/addons/notifications/pages/notification/notification.html
+++ b/src/addons/notifications/pages/notification/notification.html
@@ -49,7 +49,7 @@
 
         <div collapsible-footer appearOnBottom *ngIf="loaded && actions && actions.length > 0" slot="fixed">
             <div class="list-item-limited-width adaptable-buttons-row">
-                <ion-button expand="block" (click)="action.action()" *ngFor="let action of actions">
+                <ion-button expand="block" (click)="action.action(action.sites[0])" *ngFor="let action of actions">
                     <ion-icon slot="start" name="{{action.icon}}" aria-hidden="true" />
                     {{ action.message | translate }}
                 </ion-button>
diff --git a/src/core/services/sites.ts b/src/core/services/sites.ts
index f3a713209..d052b9338 100644
--- a/src/core/services/sites.ts
+++ b/src/core/services/sites.ts
@@ -807,7 +807,9 @@ export class CoreSitesProvider {
      * @returns Either VALID_VERSION, WORKPLACE_APP or MOODLE_APP.
      */
     protected validateWorkplaceVersion(info: CoreSiteInfoResponse): number {
-        const isWorkplace = !!info.functions && info.functions.some((func) => func.name == 'tool_program_get_user_programs');
+        const isWorkplace = !!info.functions && info.functions.some((func) =>
+            func.name === 'tool_program_get_user_programs' ||
+            func.name === 'tool_catalogue_get_user_catalogue');
 
         const isWPEnabled = this.isWorkplaceEnabled();