Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
hotfix 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgunozerk committed May 2, 2022
1 parent 4c0b6f2 commit c05c98b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subspace-desktop"
version = "0.4.3"
version = "0.4.4"
description = "Subspace desktop"
authors = ["Subspace Labs <https://subspace.network>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ q-layout(view="hHh lpr fFf")
q-toolbar-title
.row
.col-auto.q-mr-lg.relative-position
p {{ "0.4.3 "}}
p {{ "0.4.4 "}}
.col-auto.q-mr-md.relative-position
q-badge(color="grey" text-color="white")
.q-pa-xs(style="font-size: 14px") {{ lang.nonIncentivizedLabel }}
Expand Down
10 changes: 7 additions & 3 deletions src/pages/SetupPlot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,13 @@ export default defineComponent({
},
async checkIdentity() {
const config = appConfig.getAppConfig()
if (config && config.importedRewAddr === false) {
await this.client.createRewardAddress()
await this.viewMnemonic()
if (config) {
if (config.importedRewAddr === false) {
await this.client.createRewardAddress()
await this.viewMnemonic()
} else {
this.$router.replace({ name: "plottingProgress" })
}
}
},
async viewMnemonic() {
Expand Down

0 comments on commit c05c98b

Please sign in to comment.