Quick fixes for self deployment.

This commit is contained in:
mike12345567 2020-12-04 12:07:51 +00:00
parent 4fed10ccdf
commit 643cff06ea
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,9 @@ class Deployment {
} }
setQuota(quota) { setQuota(quota) {
if (!quota) {
return
}
this.quota = quota this.quota = quota
} }
@ -31,6 +34,9 @@ class Deployment {
} }
setVerification(verification) { setVerification(verification) {
if (!verification) {
return
}
if (this.verification.quota) { if (this.verification.quota) {
this.quota = this.verification.quota this.quota = this.verification.quota
} }