From 64ecf531bda49df3f03e0a65bf2c06ca89c33360 Mon Sep 17 00:00:00 2001 From: benbierens Date: Mon, 26 Feb 2024 09:02:46 +0100 Subject: [PATCH] Adds missing error message check to marketplaceAccess --- ProjectPlugins/CodexPlugin/MarketplaceAccess.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ProjectPlugins/CodexPlugin/MarketplaceAccess.cs b/ProjectPlugins/CodexPlugin/MarketplaceAccess.cs index cde4eb6..462f468 100644 --- a/ProjectPlugins/CodexPlugin/MarketplaceAccess.cs +++ b/ProjectPlugins/CodexPlugin/MarketplaceAccess.cs @@ -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); }