Skip to content

Commit ea5f4fd

Browse files
domainregistraruphlewis
authored andcommitted
Update Provider.php
Remove unnecessary logic which prevents renewals within 90 days of expiry for .AU
1 parent 25f0efc commit ea5f4fd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/TPPWholesale/Provider.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ public function renew(RenewParams $params): DomainResult
304304
$order = null;
305305
}
306306

307-
if (isset($order['type']) && $order['type'] === 'Renewal' && $order['status'] === 'Scheduled') {
308-
$this->errorResult('A scheduled domain renewal order already exists');
309-
}
310-
311307
$this->api()->renew($domainName, $period);
312308
return $this->getInfoDomainResult($domainName, sprintf('Renewal for %s domain was successful!', $domainName));
313309
} catch (Throwable $e) {

0 commit comments

Comments
 (0)