@mdfriday/foundry 26.4.14 → 26.4.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/dist/index.js +1 -1
- package/dist/obsidian/mobile.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2569,7 +2569,7 @@ var init_user_factory = __esm({
|
|
|
2569
2569
|
async load() {
|
|
2570
2570
|
try {
|
|
2571
2571
|
const userData = await this.storageProvider.loadUserData();
|
|
2572
|
-
if (!userData
|
|
2572
|
+
if (!userData) {
|
|
2573
2573
|
log4.debug("No user data found in storage");
|
|
2574
2574
|
return null;
|
|
2575
2575
|
}
|
|
@@ -55315,7 +55315,7 @@ For more information, visit: https://help.mdfriday.com
|
|
|
55315
55315
|
* Show version
|
|
55316
55316
|
*/
|
|
55317
55317
|
showVersion() {
|
|
55318
|
-
const version = "26.4.
|
|
55318
|
+
const version = "26.4.15";
|
|
55319
55319
|
return {
|
|
55320
55320
|
success: true,
|
|
55321
55321
|
message: `MDFriday CLI v${version}`
|