fix(touchpanel): update SetAppUrl method to directly assign the provided URL

This commit is contained in:
Neil Dorin 2026-08-18 12:07:44 -06:00
parent aff4c1e897
commit dbd9ad5f25

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();
} }