From eb11a7870ee8e8804478912f47b8190c11bedf01 Mon Sep 17 00:00:00 2001 From: altaf-creator Date: Tue, 2 Dec 2025 16:32:53 +0700 Subject: fixes for info --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend') 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: -- cgit v1.2.3