Compare commits

...

1 commit

Author SHA1 Message Date
Neil Dorin
dbd9ad5f25 fix(touchpanel): update SetAppUrl method to directly assign the provided URL 2026-08-18 12:07:44 -06:00

View file

@ -611,7 +611,7 @@ namespace PepperDash.Essentials.Touchpanel
/// </summary> /// </summary>
public void SetAppUrl(string url) public void SetAppUrl(string url)
{ {
_appUrl = GetUrlWithCorrectIp(url); _appUrl = url;
AppUrlFeedback.FireUpdate(); AppUrlFeedback.FireUpdate();
} }