From 5ecb8c295edf9393fa6a51f537922d739d8cc7c7 Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Tue, 9 Dec 2025 21:51:10 -0500 Subject: [PATCH] Update samy.ps1 --- samy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samy.ps1 b/samy.ps1 index ee7d8f1..fd598d9 100644 --- a/samy.ps1 +++ b/samy.ps1 @@ -1070,7 +1070,7 @@ function Get-UIHtml { # Make the CSS background-image follow $Script:SamyBgLogoUrl if ($cssContent) { - $pattern = 'background-image:\s*url\("SAMY\.png"\);?' # matches with or without extra spaces/semicolon + $pattern = 'background-image:\s*url\("SAMY5\.png"\);?' # matches with or without extra spaces/semicolon $replacement = "background-image: url('$Script:SamyBgLogoUrl');" $cssContent = [regex]::Replace($cssContent, $pattern, $replacement) }