Skip to content

Commit

Permalink
fixes #218 - fix startup crash when using multiple profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
d99kris committed Apr 21, 2024
1 parent 55ceb90 commit 2166dd9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/common/src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

#pragma once

#define NCHAT_VERSION "4.67"
#define NCHAT_VERSION "4.68"
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,15 +376,15 @@ int main(int argc, char* argv[])
}
});

// Ui main loop
ui->Run();

// Cleanup login thread
if (loginThread.joinable())
{
loginThread.join();
}

// Ui main loop
ui->Run();

// Logout
for (auto& protocol : protocols)
{
Expand Down
2 changes: 1 addition & 1 deletion src/nchat.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
.TH NCHAT "1" "April 2024" "nchat v4.67" "User Commands"
.TH NCHAT "1" "April 2024" "nchat v4.68" "User Commands"
.SH NAME
nchat \- ncurses chat
.SH SYNOPSIS
Expand Down

0 comments on commit 2166dd9

Please sign in to comment.