Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
### Fixed
- Fix visual regression in edit mode to prevent overflow of breadcrumbs
[#989](https://github.com/nextcloud/cookbook/pull/989) @christianlupus
- l10n: Changed spelling of MIME
[#988](https://github.com/nextcloud/cookbook/pull/988) @rakekniven


## 0.9.12 - 2022-05-12
Expand Down Expand Up @@ -32,7 +34,7 @@
[#985](https://github.com/nextcloud/cookbook/pull/985) @christianlupus

### Documentation
- Corrected some spelling issues
- l10n: Corrected some spelling issues
[#941](https://github.com/nextcloud/cookbook/pull/941) @Valdnet
- Enhanced the user documentation by adding some starter's information
[#936](https://github.com/nextcloud/cookbook/pull/936) @zorglubu
Expand Down
2 changes: 1 addition & 1 deletion lib/Controller/RecipeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function image($id) {
if (array_search('svg', $acceptedExtensions, true) === false) {
// We may not serve a SVG image. Tell the client about the missing image.
$json = [
'msg' => $this->l->t('No image with the matching mime type was found on the server.'),
'msg' => $this->l->t('No image with the matching MIME type was found on the server.'),
];
return new JSONResponse($json, Http::STATUS_NOT_ACCEPTABLE);
} else {
Expand Down