From bd09157978581d6463c5320b92f11b96ae5542f5 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sun, 5 Jul 2015 21:37:58 -0400 Subject: [PATCH] change to list interface --- src/XIVSync.Net/LodestoneApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XIVSync.Net/LodestoneApi.cs b/src/XIVSync.Net/LodestoneApi.cs index 0aec00a..9cc57eb 100644 --- a/src/XIVSync.Net/LodestoneApi.cs +++ b/src/XIVSync.Net/LodestoneApi.cs @@ -32,7 +32,7 @@ namespace XIVSync.Net return response.StatusCode != HttpStatusCode.OK ? null : JsonConvert.DeserializeObject(response.Content); } - public IEnumerable GetServers(double timeoutSeconds = 90) + public IList GetServers(double timeoutSeconds = 90) { var dom = CQ.CreateFromUrl("http://na.finalfantasyxiv.com/lodestone/worldstatus/", new ServerConfig() {TimeoutSeconds = timeoutSeconds}); var servers = new List();