|
@@ -14,7 +14,6 @@ using XF.Material.Forms.UI;
|
|
|
using Xamarin.Essentials;
|
|
|
using SkiaSharp;
|
|
|
using System.Threading;
|
|
|
-using Java.Util;
|
|
|
using System.Linq;
|
|
|
using System.Collections.Generic;
|
|
|
|
|
@@ -80,7 +79,7 @@ namespace comal.timesheets
|
|
|
if (Settings.URL.ToUpper().Contains("COM-AL"))
|
|
|
{
|
|
|
List<string> list = new List<string>();
|
|
|
- list.Add("http://remote.com-al.com.au:)" + Settings.Port);
|
|
|
+ list.Add("http://remote.com-al.com.au:" + Settings.Port);
|
|
|
list.Add("http://remote2.com-al.com.au:" + Settings.Port);
|
|
|
list.Add("http://remote3.com-al.com.au:" + Settings.Port);
|
|
|
|
|
@@ -96,7 +95,7 @@ namespace comal.timesheets
|
|
|
if (DBSettings.URLs[0].ToUpper().Contains("COM-AL"))
|
|
|
{
|
|
|
List<string> list = new List<string>();
|
|
|
- list.Add("http://remote.com-al.com.au:)" + Settings.Port);
|
|
|
+ list.Add("http://remote.com-al.com.au:" + Settings.Port);
|
|
|
list.Add("http://remote2.com-al.com.au:" + Settings.Port);
|
|
|
list.Add("http://remote3.com-al.com.au:" + Settings.Port);
|
|
|
|