From 5f4962ddcce49a9ce2732f707d87bf05a75f0c24 Mon Sep 17 00:00:00 2001 From: Archi Date: Wed, 20 Mar 2024 09:49:52 +0100 Subject: [PATCH] Update IPluginUpdates.cs --- ArchiSteamFarm/Plugins/Interfaces/IPluginUpdates.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Plugins/Interfaces/IPluginUpdates.cs b/ArchiSteamFarm/Plugins/Interfaces/IPluginUpdates.cs index 952685af7..97e2dfe6b 100644 --- a/ArchiSteamFarm/Plugins/Interfaces/IPluginUpdates.cs +++ b/ArchiSteamFarm/Plugins/Interfaces/IPluginUpdates.cs @@ -40,7 +40,7 @@ public interface IPluginUpdates : IPlugin { /// /// Target ASF version that plugin update should be compatible with. In rare cases, this might not match currently running ASF version, in particular when updating to newer release and checking if any plugins are compatible with it. /// ASF variant of current instance, which may be useful if you're providing different versions for different ASF variants. - /// Boolean value specifying whether ASF is being updated right now to given + /// Boolean value specifying whether ASF is being updated right now to given version. /// ASF update channel specified for this request. This might be different from the one specified in , as user might've specified other one for this request. /// Target release asset URL that should be used for auto-update. It's permitted to return null if you want to skip update, e.g. because no new version is available. Task GetTargetReleaseURL(Version asfVersion, string asfVariant, bool asfUpdate, GlobalConfig.EUpdateChannel updateChannel);