Skip to content

Commit

Permalink
write encrypted url
Browse files Browse the repository at this point in the history
  • Loading branch information
juliocavalin-lp committed Apr 9, 2024
1 parent fb24564 commit 319f45d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,9 +645,9 @@ int edit_new_account(struct session *session,
account_set_username(account, xstrdup(""), key);
account_set_note(account, xstrdup(""), key);
if (choice == EDIT_NOTES || note_type != NOTE_TYPE_NONE) {
account->url = xstrdup("http://sn");
account_set_url(account, xstrdup("http://sn"), key, &session->feature_flag);
} else {
account->url = xstrdup("");
account_set_url(account, xstrdup(""), key, &session->feature_flag);
}
account_assign_share(blob, account, key, &session->feature_flag);
list_add(&account->list, &blob->account_head);
Expand Down

0 comments on commit 319f45d

Please sign in to comment.