From 28da27167b1cd7e516e424a7fdfb8e057a0cf5e8 Mon Sep 17 00:00:00 2001 From: Sublunar Space Date: Mon, 19 Sep 2022 18:28:18 +0200 Subject: [PATCH] fix --- js/SL.Calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/SL.Calendar.js b/js/SL.Calendar.js index 99ad06b..49352e9 100644 --- a/js/SL.Calendar.js +++ b/js/SL.Calendar.js @@ -169,7 +169,7 @@ SL.Calendar = (function() { // checks if usecase is online, then uses server based calculation } else { var url = "https://almanac.sublunar.space/pmom.php?days="+days+"&ts="+ts+"&lat="+lat+"&lon="+lon; - fetch('pmom.json') + fetch(url) .then(function(response) { return response.json(); })