mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-11-30 18:11:44 +00:00
Compare commits
2 Commits
1796400ab9
...
854c954180
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
854c954180 | ||
|
|
a52baa5874 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -55,7 +55,7 @@ Temporary Items
|
||||
.Trash-*
|
||||
|
||||
# Ignore all modules except the default modules.
|
||||
modules
|
||||
modules/*
|
||||
!modules/default
|
||||
|
||||
# Ignore changes to the custom css files but keep the sample and main.
|
||||
|
||||
@@ -37,6 +37,7 @@ planned for 2026-01-01
|
||||
- [core] refactor: replace `XMLHttpRequest` with `fetch` in `translator.js` (#3950)
|
||||
- [tests] migrate e2e tests to Playwright (#3950)
|
||||
- [calendar] refactor: migrate CalendarFetcher to ES6 class and improve error handling (#3958)
|
||||
- [gitignore] cleanup/simplify .gitignore (#3952, #3954, #3968)
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -47,6 +48,7 @@ planned for 2026-01-01
|
||||
- fixed problems with daylight-saving-time in weather provider `openmeto` (#3930, #3931)
|
||||
- [newsfeed] fixed header layout issue introduced with prettier njk linting (#3946)
|
||||
- [weather] fixed windy icon not showing up in pirateweather (#3957)
|
||||
- [compliments] fixed duplicate query param "?" when constructing refresh url (#3967)
|
||||
|
||||
### Updated
|
||||
|
||||
|
||||
@@ -214,8 +214,9 @@ Module.register("compliments", {
|
||||
// we need to force the server to not give us the cached result
|
||||
// create an extra property (ignored by the server handler) just so the url string is different
|
||||
// that will never be the same, using the ms value of date
|
||||
if (isRemote && this.config.remoteFileRefreshInterval !== 0) this.urlSuffix = `?dummy=${Date.now()}`;
|
||||
//
|
||||
if (isRemote && this.config.remoteFileRefreshInterval !== 0) {
|
||||
this.urlSuffix = this.config.remoteFile.includes("?") ? `&dummy=${Date.now()}` : `?dummy=${Date.now()}`;
|
||||
}
|
||||
try {
|
||||
const response = await fetch(url + this.urlSuffix);
|
||||
return await response.text();
|
||||
|
||||
Reference in New Issue
Block a user