From bf258c1efbf325d3f61fd45931a73d306fd99110 Mon Sep 17 00:00:00 2001 From: Kilian von Pflugk Date: Sat, 30 Nov 2024 22:16:48 +0100 Subject: [PATCH] fix typos --- IntroSkipper/Helper/LegacyMigrations.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IntroSkipper/Helper/LegacyMigrations.cs b/IntroSkipper/Helper/LegacyMigrations.cs index 9ca43c6..d1f737e 100644 --- a/IntroSkipper/Helper/LegacyMigrations.cs +++ b/IntroSkipper/Helper/LegacyMigrations.cs @@ -127,7 +127,7 @@ internal static class LegacyMigrations } catch (Exception) { - // If skip button is disabled and we can't access the file, just return silently + // If skip button is disabled, and we can't access the file, just return silently if (!plugin.Configuration.SkipButtonEnabled) { logger.LogDebug("Skip button disabled and no permission to access index.html. Assuming its a fresh install."); @@ -235,7 +235,7 @@ internal static class LegacyMigrations // only add if not already disabled if (!folder.LibraryOptions.DisabledMediaSegmentProviders.Contains(plugin.Name)) { - // ppend in case there other disabled media segment providers + // append in case there other disabled media segment providers folder.LibraryOptions.DisabledMediaSegmentProviders = [.. folder.LibraryOptions.DisabledMediaSegmentProviders, plugin.Name]; logger.LogInformation("Disable Media Segment Provider <{Name}> for Library <{Name}>", plugin.Name, folder.Name); } @@ -258,7 +258,7 @@ internal static class LegacyMigrations // only add if not already disabled if (!folder.LibraryOptions.DisabledMediaSegmentProviders.Contains(plugin.Name)) { - // ppend in case there other disabled media segment providers + // append in case there other disabled media segment providers folder.LibraryOptions.DisabledMediaSegmentProviders = [.. folder.LibraryOptions.DisabledMediaSegmentProviders, plugin.Name]; logger.LogInformation("Disable Media Segment Provider <{Name}> for Library <{Name}>", plugin.Name, folder.Name); }