@hivedev/hivesdk 1.0.41 → 1.0.42
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/hive-client.js +1 -1
- package/hive-server.cjs +2 -2
- package/package.json +1 -1
package/hive-client.js
CHANGED
package/hive-server.cjs
CHANGED
|
@@ -530,14 +530,14 @@ async function saveConfiguration(configurationObject) {
|
|
|
530
530
|
await encryptAndStoreFile(
|
|
531
531
|
JSON.stringify(configurationObject.firebaseAdminCredentials),
|
|
532
532
|
import_path4.default.join(getAppDataDirectory(), "firebase_admin_credentials.dat"),
|
|
533
|
-
process.env.
|
|
533
|
+
process.env.WORD
|
|
534
534
|
);
|
|
535
535
|
}
|
|
536
536
|
if (configurationObject.databaseCredentials) {
|
|
537
537
|
await encryptAndStoreFile(
|
|
538
538
|
JSON.stringify(configurationObject.databaseCredentials),
|
|
539
539
|
import_path4.default.join(getAppDataDirectory(), "database_credentials.dat"),
|
|
540
|
-
process.env.
|
|
540
|
+
process.env.WORD
|
|
541
541
|
);
|
|
542
542
|
}
|
|
543
543
|
if (configurationObject.permissions) {
|