diff options
| author | altaf-creator <dev@altafcreator.com> | 2025-12-02 16:32:53 +0700 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2025-12-02 16:32:53 +0700 |
| commit | eb11a7870ee8e8804478912f47b8190c11bedf01 (patch) | |
| tree | 530aaab3ff33fe8198ba6b07bb2549396f7fbe94 | |
| parent | 6f30ea66a89423001228f748dd43b2ee6d331980 (diff) | |
fixes for info
| -rw-r--r-- | backend/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/main.py b/backend/main.py index a27c661..d6a74a5 100644 --- a/backend/main.py +++ b/backend/main.py @@ -399,7 +399,7 @@ def uri_to_information(data: InformationRequestData, response: fastapi.Response, if info: if auth_block != info[0]: response.status_code = fastapi.status.HTTP_403_FORBIDDEN - return "UNAUTHORISED to view information" + return "UNAUTHORISED to view information of block " + str(info[0]) else: info = [auth_block, None] else: |
