Skip to content

Commit 3284301

Browse files
committed
chore(release): v1.2.7
1 parent 9df4835 commit 3284301

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "lume",
33
"description": "the communication app",
44
"private": true,
5-
"version": "1.2.6",
5+
"version": "1.2.7",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lume"
3-
version = "1.2.6"
3+
version = "1.2.7"
44
description = "the communication app"
55
authors = ["Ren Amamiya"]
66
license = "GPL-3.0"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"package": {
1111
"productName": "Lume",
12-
"version": "1.2.6"
12+
"version": "1.2.7"
1313
},
1414
"tauri": {
1515
"allowlist": {

src/libs/ndk/instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export const NDKInstance = () => {
2626
const onlineRelays = new Set(relays);
2727

2828
for (const relay of relays) {
29-
const url = new URL(relay);
3029
try {
30+
const url = new URL(relay);
3131
const res = await fetch(`https://${url.hostname}`, {
3232
method: 'GET',
3333
timeout: { secs: 5, nanos: 0 },

0 commit comments

Comments
 (0)