forgot to return after destroying the connection (#412)
Co-authored-by: stonedDiscord <10584181+stonedDiscord@users.noreply.github.com>
This commit is contained in:
parent
5786694b53
commit
ed9ecfda47
@ -37,11 +37,17 @@ void DemoServer::accept_connection()
|
|||||||
{
|
{
|
||||||
QString path = QFileDialog::getOpenFileName(nullptr, tr("Load Demo"), "logs/", tr("Demo Files (*.demo)"));
|
QString path = QFileDialog::getOpenFileName(nullptr, tr("Load Demo"), "logs/", tr("Demo Files (*.demo)"));
|
||||||
if (path.isEmpty())
|
if (path.isEmpty())
|
||||||
|
{
|
||||||
destroy_connection();
|
destroy_connection();
|
||||||
|
return;
|
||||||
|
}
|
||||||
load_demo(path);
|
load_demo(path);
|
||||||
|
|
||||||
if (demo_data.isEmpty())
|
if (demo_data.isEmpty())
|
||||||
|
{
|
||||||
destroy_connection();
|
destroy_connection();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (demo_data.head().startsWith("SC#"))
|
if (demo_data.head().startsWith("SC#"))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user