From 39fe6292a31cd2f13d5249b5824eb3b87f48d9b5 Mon Sep 17 00:00:00 2001 From: Kelton Manzanares Date: Mon, 10 Feb 2020 18:29:23 -0600 Subject: [PATCH] updating shapefile.js .shp file for Safari compatibility --- shapefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapefile.js b/shapefile.js index 0c999ab..b24a3f4 100644 --- a/shapefile.js +++ b/shapefile.js @@ -69,7 +69,7 @@ var o = typeof o == "string" ? {shp: o} : o this.callback = callback - if (!!o.shp.lastModifiedDate) + if (!!(o.shp.lastModifiedDate || o.shp.lastModified)) this.handleFile(o); else this.handleUri(o);