Skip to content

Commit

Permalink
Check if webSpaceQuota is null or undefined to retry getting the proj…
Browse files Browse the repository at this point in the history
…ect info
  • Loading branch information
coder-hugo committed Apr 7, 2021
1 parent c68447a commit a77f137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ try {
return;
}

if (branch.webSpaceQuota === null) {
if (branch.webSpaceQuota === null || branch.webSpaceQuota === undefined) {
if (counter === 0) {
core.setFailed('The IONOS.space project is not yet setup properly');
} else {
Expand Down

0 comments on commit a77f137

Please sign in to comment.