Skip to content

Commit

Permalink
Fix issue when settings are uninitialized
Browse files Browse the repository at this point in the history
Add Changelog
  • Loading branch information
Tam committed Mar 17, 2022
1 parent 0f8c125 commit 7bf9780
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 0.0.2 - 2022-03-17
### Fixed
- Fix issue when settings are uninitialized

## 0.0.1 - 2022-03-17
- Initial Release
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ether/mux",
"description": "Automatically generate Mux videos from Craft CMS assets",
"version": "0.0.1",
"version": "0.0.2",
"type": "craft-plugin",
"license": "MIT",
"minimum-stability": "dev",
Expand Down
4 changes: 2 additions & 2 deletions src/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Settings extends Model
{

public string $accessTokenId;
public string $secretKey;
public string $accessTokenId = '';
public string $secretKey = '';

}

0 comments on commit 7bf9780

Please sign in to comment.