@akilles/soundcloud-watcher 2.0.2 → 2.0.3
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/index.ts +1 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -90,7 +90,6 @@ Not configured yet.
|
|
|
90
90
|
|
|
91
91
|
2. Create config file:
|
|
92
92
|
\`\`\`bash
|
|
93
|
-
mkdir -p ~/.openclaw/secrets
|
|
94
93
|
nano ~/.openclaw/secrets/soundcloud.env
|
|
95
94
|
\`\`\`
|
|
96
95
|
|
|
@@ -179,5 +178,5 @@ MY_USERNAME=your_soundcloud_username
|
|
|
179
178
|
},
|
|
180
179
|
});
|
|
181
180
|
|
|
182
|
-
logger.info
|
|
181
|
+
(logger.info ?? console.log).call(logger, 'SoundCloud Watcher plugin loaded');
|
|
183
182
|
}
|
package/openclaw.plugin.json
CHANGED