mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 11:05:08 -05:00
fix mod descriptions (nasty bug)
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
this is a very bad issue with the result library :( alk pls fix
This commit is contained in:
parent
70be7c6061
commit
31d7c9d099
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ protected:
|
|||
}
|
||||
|
||||
void onRequest(Request::Event* event) {
|
||||
if (event->getValue() && event->getValue()->isOk() && event->getValue()->unwrap()) {
|
||||
if (event->getValue() && event->getValue()->isOk() && event->getValue()->inspect([](auto&& value) { return value.has_value(); })) {
|
||||
m_loading->removeFromParent();
|
||||
m_textarea->setString(event->getValue()->unwrap()->c_str());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue