Skip to content

Commit

Permalink
Fix FetchFlameAPIKey compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-goode committed Jan 12, 2025
1 parent ccc886b commit 8cd807c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion launcher/net/FetchFlameAPIKey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <ui/dialogs/CustomMessageBox.h>
#include <ui/dialogs/ProgressDialog.h>

FetchFlameAPIKey::FetchFlameAPIKey(QObject* parent) : Task{ parent } {}
FetchFlameAPIKey::FetchFlameAPIKey() : Task{} {}

// Here, we fetch the official CurseForge API key from the files of the
// CurseForge app. We range-request the specific ~84KiB zlib block inside the
Expand Down
2 changes: 1 addition & 1 deletion launcher/net/FetchFlameAPIKey.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
class FetchFlameAPIKey : public Task {
Q_OBJECT
public:
explicit FetchFlameAPIKey(QObject* parent = nullptr);
explicit FetchFlameAPIKey();

QString m_result;

Expand Down

0 comments on commit 8cd807c

Please sign in to comment.