fix last commit

This commit is contained in:
HF 2021-06-02 21:11:23 +02:00
parent b839866aea
commit 241ed14117
3 changed files with 3 additions and 4 deletions

View File

@ -16,7 +16,7 @@ async function history(req: Request, res: Response) {
res.status(404).end();
}
const yyyy = day.slice(0, 4);
const mm = day.slice(4, 2);
const mm = day.slice(4, 6);
const dd = day.slice(6);
const path = `${BACKUP_DIR}/${yyyy}/${mm}/${dd}/${id}`;

View File

@ -255,7 +255,7 @@ class ChunkLoader {
const center = [historicalCanvasMaxTiledZoom, cx, cy];
// eslint-disable-next-line max-len
let url = `${window.ssv.backupurl}/${historicalDate.slice(0, 4)}/${historicalDate.slice(4, 2)}/${historicalDate.slice(6)}/`;
let url = `${window.ssv.backupurl}/${historicalDate.slice(0, 4)}/${historicalDate.slice(4, 6)}/${historicalDate.slice(6)}/`;
if (historicalTime) {
// incremential tiles
url += `${canvasId}/${historicalTime}/${cx}/${cy}.png`;

View File

@ -7,11 +7,10 @@ DATE_YESTERDAY=`printf "%(%Y/%m/%d)T" $(( $(printf "%(%s)T" -1) - 24*3600 ))`
#delete older daily backup folders from local filesystem if exist
if [ -d "${TMPDIR}/${DATE_YESTERDAY}" ]
then
echo "Deleting past day from tmp-folder ${DATE_YESTERDAY}"
rm -rf "${TMPDIR}/${DATE_YESTERDAY}"
fi
exit
rsync -r ${TMPDIR}/ backup@ayylmao:/backup/pixelplanet/canvas
#clear current daily folder