2
0
mirror of synced 2025-01-11 17:14:25 +00:00

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

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);
}