Adds missing error message check to marketplaceAccess

This commit is contained in:
benbierens 2024-02-26 09:02:46 +01:00
parent ec0f7a6790
commit 64ecf531bd
No known key found for this signature in database
GPG Key ID: 877D2C2E09A22F3A
1 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,8 @@ namespace CodexPlugin
if (response == "Purchasing not available" ||
response == "Expiry required" ||
response == "Expiry needs to be in future")
response == "Expiry needs to be in future" ||
response == "Expiry has to be before the request's end (now + duration)")
{
throw new InvalidOperationException(response);
}