fix: [UI] Info message should not be error

pull/5049/head
Jakub Onderka 2019-08-23 19:40:20 +02:00 committed by GitHub
parent 77b1e39dec
commit 6174c9c698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ class FeedsController extends AppController
if ($this->_isRest()) {
return $this->RestResponse->saveSuccessResponse('Feed', 'cacheFeed', false, $this->response->type(), $message);
} else {
$this->Flash->error($message);
$this->Flash->info($message);
$this->redirect(array('controller' => 'feeds', 'action' => 'index'));
}
}