summaryrefslogtreecommitdiff
path: root/app/Controllers/apiController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/apiController.php')
-rw-r--r--app/Controllers/apiController.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Controllers/apiController.php b/app/Controllers/apiController.php
index 585a7a9bb..139e2734e 100644
--- a/app/Controllers/apiController.php
+++ b/app/Controllers/apiController.php
@@ -58,7 +58,11 @@ class FreshRSS_api_Controller extends FreshRSS_ActionController {
if (is_string($error)) {
Minz_Request::bad($error, $return_url);
} else {
- Minz_Request::good(_t('feedback.api.password.updated'), $return_url);
+ Minz_Request::good(
+ _t('feedback.api.password.updated'),
+ $return_url,
+ showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
+ );
}
}
}