Skip to content

Commit

Permalink
Merge branch 'release/4.0.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenckens committed Apr 11, 2024
2 parents 66cfcd4 + 4a23e88 commit 0374aca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 4.0.9 - 2024-04-11
### Fixed
- Fixed missing meta description

## 4.0.8 - 2024-04-11
### Fixed
- Fixed missing meta description
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "studioespresso/craft-seo-fields",
"description": "Fields for your SEO & OG meta data",
"type": "craft-plugin",
"version": "4.0.8",
"version": "4.0.9",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/models/SeoFieldModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public function getMetaDescription()
}

if ($this->metaDescription) {
return $this->getMetaDescription();
return $this->metaDescription;
}

return $this->siteDefault->defaultMetaDescription;
Expand Down

0 comments on commit 0374aca

Please sign in to comment.