diff --git a/electron/package.json b/electron/package.json index 695c887d6..a267f32d3 100644 --- a/electron/package.json +++ b/electron/package.json @@ -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": { diff --git a/package.json b/package.json index 3cf32700c..7ea7fff24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postybirb", - "version": "2.3.28", + "version": "2.3.29", "scripts": { "ng": "ng", "compile": "ng build --vendor-chunk=false", diff --git a/src/app/websites/website-services/subscribestar/subscribestar.service.ts b/src/app/websites/website-services/subscribestar/subscribestar.service.ts index 1520c87b5..3326a057a 100644 --- a/src/app/websites/website-services/subscribestar/subscribestar.service.ts +++ b/src/app/websites/website-services/subscribestar/subscribestar.service.ts @@ -53,7 +53,7 @@ function submissionValidate( } } - if (!options.tiers.length) { + if (options.tiers && !options.tiers.length) { problems.push(['No tiers selected for SubscribeStar']); }