New user id
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
const currentDate = new Date();
|
||||
const dd = currentDate.getDate().toString().padStart(2, '0');
|
||||
const mm = (new Date().getMonth() + 1).toString().padStart(2, '0');
|
||||
const url = _UniformResourceLocator + '/slideshow/' + _DataDirectory + '/' + mm + '-' + dd + '.json?nocache=2025-08-02-11-33';
|
||||
const url = _UniformResourceLocator + '/slideshow/' + _DataDirectory + '/' + mm + '-' + dd + '.json?nocache=2025-08-10-15-12';
|
||||
console.log(url);
|
||||
fetch(url, { nocache: new Date().getTime() })
|
||||
.then((res) => res.text())
|
||||
@ -177,7 +177,7 @@
|
||||
_hasLast = typeof window == 'undefined' ? false : window.location.href.indexOf('last') > 0;
|
||||
_hasList = typeof window == 'undefined' ? false : window.location.href.indexOf('list') > 0;
|
||||
_hasTime = typeof window == 'undefined' ? false : window.location.href.indexOf('time') > 0;
|
||||
const url = uniformResourceLocator + '/slideshow/index.json?nocache=2025-08-02-11-33';
|
||||
const url = uniformResourceLocator + '/slideshow/index.json?nocache=2025-08-10-15-12';
|
||||
console.log(url);
|
||||
fetch(url, { nocache: new Date().getTime() })
|
||||
.then((res) => res.text())
|
||||
@ -225,7 +225,7 @@
|
||||
}
|
||||
|
||||
function loadLog() {
|
||||
const url = _UniformResourceLocator + '/log-nginx/access.log?nocache=2025-08-02-11-33';
|
||||
const url = _UniformResourceLocator + '/log-nginx/access.log?nocache=2025-08-10-15-12';
|
||||
fetch(url, { nocache: new Date().getTime() })
|
||||
.then((res) => res.text())
|
||||
.then((text) => {
|
||||
|
Reference in New Issue
Block a user