From 05038b6eada8313ce573057be559c329d2a2cc45 Mon Sep 17 00:00:00 2001
From: TwistedUmbrellaX <1173913+AbandonedCart@users.noreply.github.com>
Date: Tue, 22 Oct 2024 19:13:33 -0400
Subject: [PATCH] Formatting for error messages
---
IntroSkipper/Configuration/configPage.html | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/IntroSkipper/Configuration/configPage.html b/IntroSkipper/Configuration/configPage.html
index 722c478..da60d73 100644
--- a/IntroSkipper/Configuration/configPage.html
+++ b/IntroSkipper/Configuration/configPage.html
@@ -514,12 +514,13 @@
+
-
+
-
@@ -1022,7 +1023,7 @@
if (lhs === undefined) {
timestampError.value += "Error: " + selectEpisode1.value + " fingerprints failed!\n";
} else if (lhs === null) {
- timestampError.value += "Error: " + selectEpisode1.value + " fingerprints missing!\n";
+ timestampError.value += selectEpisode1.value + " fingerprints missing or incomplete.\n";
}
rightEpisodeEditor.style.display = "unset";
@@ -1031,7 +1032,7 @@
if (rhs === undefined) {
timestampError.value += "Error: " + selectEpisode2.value + " fingerprints failed!";
} else if (rhs === null) {
- timestampError.value += "Error: " + selectEpisode2.value + " fingerprints missing!\n";
+ timestampError.value += selectEpisode2.value + " fingerprints missing or incomplete.\n";
}
if (timestampError.value == "") {
@@ -1065,7 +1066,7 @@
if (lhs === undefined) {
timestampError.value += "Error: " + selectShow.value + " fingerprints failed!\n";
} else if (lhs === null) {
- timestampError.value += "Error: " + selectShow.value + " fingerprints missing!\n";
+ timestampError.value += selectShow.value + " fingerprints missing or incomplete.\n";
}
rightEpisodeEditor.style.display = "none";