From 206ea6d7899d4e79740ae361fcf56071efacb18c Mon Sep 17 00:00:00 2001 From: Kelton Manzanares Date: Mon, 10 Feb 2020 18:30:19 -0600 Subject: [PATCH] updating dbf.js .dbf file for Safari compatibility --- dbf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbf.js b/dbf.js index 222df9b..a963d89 100644 --- a/dbf.js +++ b/dbf.js @@ -56,7 +56,7 @@ } var DBF = function(url, callback){ - if (!!url.lastModifiedDate) + if (!!(url.lastModifiedDate || url.lastModified)) this.handleFile(url, callback); else this.handleUri(url, callback);