We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68b0b8c commit b4ad3f1Copy full SHA for b4ad3f1
index.js
@@ -303,7 +303,7 @@ async function fetchLiveData(authToken) {
303
}
304
305
const jsonData = await response.json();
306
- debugLog(`Received JSON response: ${JSON.stringify(jsonData).substring(0, 200)}...`);
+ debugLog(`Received JSON response: ${JSON.stringify(jsonData).substring(0, 500)}...`);
307
308
return jsonData;
309
@@ -522,6 +522,8 @@ async function fetchAndCacheData() {
522
523
524
525
+process.env.TZ = 'Asia/Kolkata';
526
+
527
// Make sure the cache directory exists
528
if (!fs.existsSync(DIRECTORY_CACHE)) {
529
fs.mkdirSync(DIRECTORY_CACHE, { recursive: true });
0 commit comments