Skip to content

Commit

Permalink
Remove warning about automatic update of custom plugins if there is o…
Browse files Browse the repository at this point in the history
…nly official plugins enabled
  • Loading branch information
Abrynos committed Apr 20, 2024
1 parent 42209e9 commit 3374d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArchiSteamFarm/Plugins/PluginsCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ internal static async Task<bool> InitPlugins() {
}
}

if (activePluginUpdates.Count > 0) {
if (activePluginUpdates.Any(static plugin => plugin is not OfficialPlugin)) {
ASF.ArchiLogger.LogGenericWarning(Strings.CustomPluginUpdatesEnabled);

ActivePluginUpdates = activePluginUpdates.ToFrozenSet();
Expand Down

0 comments on commit 3374d02

Please sign in to comment.