1
0
mirror of https://github.com/danog/telerpc.git synced 2024-11-26 12:04:47 +01:00
This commit is contained in:
Daniil Gentili 2024-10-02 07:23:01 +00:00
parent 1f270a0033
commit 63f7fc66d1

View File

@ -110,7 +110,7 @@ final class Main implements RequestHandler
return new Response( return new Response(
HttpStatus::OK, HttpStatus::OK,
self::HEADERS, self::HEADERS,
json_encode(['ok' => false, 'result' => $result]) json_encode(['ok' => true, 'result' => $result])
); );
} }