Don't try to upload entire config for each connection loaded

This commit is contained in:
Madeline 2022-12-23 20:32:19 +11:00 committed by Puyodead1
parent 42b2237d0f
commit 50f068400d
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -22,7 +22,8 @@ export const ConnectionConfig = {
if (!config || !val) return;
config = val.merge(config);
return applyConfig(config);
// return applyConfig(config);
return applyConfig(val);
},
};