opencode-pollinations-plugin 6.1.0-beta.2 → 6.1.0-beta.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/dist/server/config.js +5 -0
- package/package.json +1 -1
package/dist/server/config.js
CHANGED
|
@@ -59,6 +59,11 @@ function migrateConfig(config) {
|
|
|
59
59
|
delete config.fallbacks.free;
|
|
60
60
|
logConfig('[Migration] fallbacks.free → fallbacks.economy');
|
|
61
61
|
}
|
|
62
|
+
// Remove obsolete 'enter' fallback
|
|
63
|
+
if (config.fallbacks?.enter) {
|
|
64
|
+
delete config.fallbacks.enter;
|
|
65
|
+
logConfig('[Migration] Removed obsolete fallbacks.enter');
|
|
66
|
+
}
|
|
62
67
|
// Migrate old wallet threshold
|
|
63
68
|
if (config.thresholds?.wallet) {
|
|
64
69
|
if (!config.thresholds.wallet_warn) {
|
package/package.json
CHANGED