From 5241def18835f56ae3c1abb38e96077da94f56ea Mon Sep 17 00:00:00 2001 From: anhefti Date: Wed, 9 Feb 2022 12:02:30 +0100 Subject: [PATCH] SEBWIN-482 fix for simple use-case (same exam selection) --- SafeExamBrowser.Runtime/Operations/ServerOperation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SafeExamBrowser.Runtime/Operations/ServerOperation.cs b/SafeExamBrowser.Runtime/Operations/ServerOperation.cs index d24cd7a8..b69dad6b 100644 --- a/SafeExamBrowser.Runtime/Operations/ServerOperation.cs +++ b/SafeExamBrowser.Runtime/Operations/ServerOperation.cs @@ -146,7 +146,7 @@ namespace SafeExamBrowser.Runtime.Operations Context.Next.AppConfig.ServerExamId = Context.Current.AppConfig.ServerExamId; Context.Next.AppConfig.ServerOauth2Token = Context.Current.AppConfig.ServerOauth2Token; - Context.Next.Settings.Server = Context.Current.Settings.Server; + Context.Next.Settings = Context.Current.Settings; Context.Next.Settings.SessionMode = SessionMode.Server; }