Skip to content

Commit eed5e19

Browse files
Merge branch 'develop' into fix/issue-#1011-specified-item-already-exists-in-the-keychain
2 parents 48da359 + 915bc97 commit eed5e19

File tree

1 file changed

+1
-1
lines changed
  • flutter_secure_storage_linux/linux/include

1 file changed

+1
-1
lines changed

flutter_secure_storage_linux/linux/include/Secret.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class SecretStorage {
6060
bool deleteKeyring() { return this->storeToKeyring(nlohmann::json()); }
6161

6262
bool storeToKeyring(nlohmann::json value) {
63-
const std::string output = value.dump(0);
63+
const std::string output = value.dump();
6464
g_autoptr(GError) err = nullptr;
6565
bool result = secret_password_storev_sync(
6666
&the_schema, m_attributes.getGHashTable(), nullptr, label.c_str(),

0 commit comments

Comments
 (0)