Skip to content

Commit

Permalink
Start v2.3.29
Browse files Browse the repository at this point in the history
Fix loading error from subscribestar changes
  • Loading branch information
mvdicarlo committed Mar 26, 2021
1 parent 220734e commit 3a0bd2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb",
"version": "2.3.28",
"version": "2.3.29",
"description": "PostyBirb is an application that helps artists post art and other multimedia to multiple websites more quickly.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postybirb",
"version": "2.3.28",
"version": "2.3.29",
"scripts": {
"ng": "ng",
"compile": "ng build --vendor-chunk=false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function submissionValidate(
}
}

if (!options.tiers.length) {
if (options.tiers && !options.tiers.length) {
problems.push(['No tiers selected for SubscribeStar']);
}

Expand Down

0 comments on commit 3a0bd2b

Please sign in to comment.