diff --git a/SafeExamBrowser.Browser/BrowserApplicationInstance.cs b/SafeExamBrowser.Browser/BrowserApplicationInstance.cs
index 1e51ed14..30a6a62f 100644
--- a/SafeExamBrowser.Browser/BrowserApplicationInstance.cs
+++ b/SafeExamBrowser.Browser/BrowserApplicationInstance.cs
@@ -223,14 +223,7 @@ namespace SafeExamBrowser.Browser
if (args.AllowDownload)
{
- logger.Debug($"Download request for configuration file '{fileName}' was granted. Asking user to confirm the reconfiguration...");
-
- var message = TextKey.MessageBox_ReconfigurationQuestion;
- var title = TextKey.MessageBox_ReconfigurationQuestionTitle;
- var result = messageBox.Show(message, title, MessageBoxAction.YesNo, MessageBoxIcon.Question, window);
-
- args.AllowDownload = result == MessageBoxResult.Yes;
- logger.Info($"The user chose to {(args.AllowDownload ? "start" : "abort")} the reconfiguration.");
+ logger.Debug($"Download request for configuration file '{fileName}' was granted.");
}
else
{
diff --git a/SafeExamBrowser.I18n.Contracts/TextKey.cs b/SafeExamBrowser.I18n.Contracts/TextKey.cs
index a478c32c..5c8c1e2a 100644
--- a/SafeExamBrowser.I18n.Contracts/TextKey.cs
+++ b/SafeExamBrowser.I18n.Contracts/TextKey.cs
@@ -51,8 +51,6 @@ namespace SafeExamBrowser.I18n.Contracts
MessageBox_ReconfigurationDeniedTitle,
MessageBox_ReconfigurationError,
MessageBox_ReconfigurationErrorTitle,
- MessageBox_ReconfigurationQuestion,
- MessageBox_ReconfigurationQuestionTitle,
MessageBox_ReloadConfirmation,
MessageBox_ReloadConfirmationTitle,
MessageBox_ServiceUnavailableError,
diff --git a/SafeExamBrowser.I18n/Text.xml b/SafeExamBrowser.I18n/Text.xml
index 19896597..97679fef 100644
--- a/SafeExamBrowser.I18n/Text.xml
+++ b/SafeExamBrowser.I18n/Text.xml
@@ -111,12 +111,6 @@
Reconfiguration Error
-
- Would you like to reconfigure the application?
-
-
- Configuration Detected
-
Would you like to reload the current page?