Compare commits

...

2 commits

View file

@ -498,11 +498,11 @@ namespace PepperDash.Essentials.Touchpanel
{ {
var appUrl = GetUrlWithCorrectIp(_appUrl); var appUrl = GetUrlWithCorrectIp(_appUrl);
this.LogInformation("Sending {appUrl} on join 1", AppUrlFeedback.StringValue); this.LogInformation("Sending {appUrl} on join 1", appUrl);
if (Panel.StringInput[1].StringValue == appUrl) if (Panel.StringInput[1].StringValue == appUrl)
{ {
this.LogInformation("App URL already set to {appUrl}, no update needed", AppUrlFeedback.StringValue); this.LogInformation("App URL already set to {appUrl}, no update needed", appUrl);
return; return;
} }
@ -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();
} }