mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 18:56:56 +00:00
Fix: Ensure now macro format is always a string to prevent Uncaught TypeError
This commit is contained in:
parent
d4bc3fcd99
commit
3d13c61c70
@ -26,7 +26,7 @@ exports.params = [
|
||||
Run the macro
|
||||
*/
|
||||
exports.run = function(format) {
|
||||
return $tw.utils.formatDateString(new Date(),format || "0hh:0mm, DDth MMM YYYY");
|
||||
return String($tw.utils.formatDateString(new Date(),format || "0hh:0mm, DDth MMM YYYY"));
|
||||
};
|
||||
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user