diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp index 0e451e9c2..64022982b 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp | |||
| @@ -495,7 +495,8 @@ Boxcat::StatusResult Boxcat::GetStatus(std::optional<std::string>& global, | |||
| 495 | } | 495 | } |
| 496 | 496 | ||
| 497 | return StatusResult::Success; | 497 | return StatusResult::Success; |
| 498 | } catch (const nlohmann::json::parse_error& e) { | 498 | } catch (const nlohmann::json::parse_error& error) { |
| 499 | LOG_ERROR(Service_BCAT, "{}", error.what()); | ||
| 499 | return StatusResult::ParseError; | 500 | return StatusResult::ParseError; |
| 500 | } | 501 | } |
| 501 | } | 502 | } |