From 9e41d3003f902a907c82e5c364122148b2a1081d Mon Sep 17 00:00:00 2001 From: Erwin van Hunen Date: Tue, 19 Nov 2024 23:35:46 +0100 Subject: [PATCH] removed hardcoded reference to PnP PowerShell string --- src/lib/PnP.Framework/AuthenticationManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/PnP.Framework/AuthenticationManager.cs b/src/lib/PnP.Framework/AuthenticationManager.cs index 80c9efd8..e4b3a708 100644 --- a/src/lib/PnP.Framework/AuthenticationManager.cs +++ b/src/lib/PnP.Framework/AuthenticationManager.cs @@ -841,7 +841,7 @@ public async Task GetAccessTokenAsync(string[] scopes, CancellationToken var options = new SystemWebViewOptions() { HtmlMessageError = "

An error occurred:

{0}. Details {1}

", - HtmlMessageSuccess = "PnP PowerShell - Sign InPnP PowerShell
You are signed in now and can close this page.
" + HtmlMessageSuccess = "PnP - Sign InPnP
You are signed in now and can close this page.
" }; builder = builder.WithUseEmbeddedWebView(false); builder = builder.WithSystemWebViewOptions(options); @@ -1027,7 +1027,7 @@ public async Task GetContextAsync(string siteUrl, CancellationTok var options = new SystemWebViewOptions() { HtmlMessageError = "

An error occurred:

{0}. Details {1}

", - HtmlMessageSuccess = "PnP PowerShell - Sign InPnP PowerShell
You are signed in now and can close this page.
" + HtmlMessageSuccess = "PnP - Sign InPnP
You are signed in now and can close this page.
" }; builder = builder.WithUseEmbeddedWebView(false); builder = builder.WithSystemWebViewOptions(options);