Skip to content

Commit

Permalink
Merge pull request #78 from solun-pm/dev
Browse files Browse the repository at this point in the history
quick fix
  • Loading branch information
DanielWTE authored Jun 22, 2023
2 parents dd1bc48 + 59ccf60 commit 297640b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/msg/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function CreateMessage() {
const passwordSet = password !== "";
const encrypted_password = passwordSet ? await hashPassword(password) : null;

const dbSecretKey = endToEndEncryption ? null : secret_key;
const dbSecretKey = endToEndEncryption ? secret_key : null;

const data = {
mid,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solun",
"version": "0.1.2",
"version": "0.1.3",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 297640b

Please sign in to comment.