Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
dankmeme01 committed Feb 7, 2024
1 parent 458ead6 commit 46915a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
combine: true
sdk: 'nightly'
target: ${{ matrix.config.target }}
bindings: "dankmeme01/bindings"

package:
name: Package builds
Expand Down
4 changes: 2 additions & 2 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"geode": "2.0.0",
"version": "v1.0.0",
"geode": "2.0.0-beta.15",
"version": "v1.0.1",
"gd": {
"win": "2.204",
"android": "2.205",
Expand Down
4 changes: 2 additions & 2 deletions src/ui/menu/main/signup_popup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ void GlobedSignupPopup::onChallengeCompleted(const std::string_view authcode) {
})
.expect([this](std::string error) {
if (error.empty()) {
this->onFailure("Creating challenge failed: server sent an empty response.");
this->onFailure("Completing challenge failed: server sent an empty response.");
} else {
this->onFailure("Creating challenge failed: <cy>" + util::format::formatErrorMessage(error) + "</c>");
this->onFailure("Completing challenge failed: <cy>" + util::format::formatErrorMessage(error) + "</c>");
}
})
.send();
Expand Down

0 comments on commit 46915a6

Please sign in to comment.