Skip to content

Commit

Permalink
Merge pull request #756 from gnunicorn/ben-fix-linux-secret-store-pro…
Browse files Browse the repository at this point in the history
…blem

json.dump with indentations for linux
  • Loading branch information
juliansteenbakker authored Aug 13, 2024
2 parents bcb605d + cfe44e6 commit 5b79a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flutter_secure_storage_linux/linux/include/Secret.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class SecretStorage {
bool deleteKeyring() { return this->storeToKeyring(nlohmann::json()); }

bool storeToKeyring(nlohmann::json value) {
const std::string output = value.dump();
const std::string output = value.dump(0);
g_autoptr(GError) err = nullptr;
bool result = secret_password_storev_sync(
&the_schema, m_attributes.getGHashTable(), nullptr, label.c_str(),
Expand Down

0 comments on commit 5b79a3a

Please sign in to comment.