From e3ad0baeb7d6ce8f031ceca59ad7bda2cbb47ac3 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Mon, 22 Apr 2024 17:41:42 +0530 Subject: [PATCH] fix: batch details meta --- lms/www/lms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/www/lms.py b/lms/www/lms.py index 4bcf11a2..0b8d31bd 100644 --- a/lms/www/lms.py +++ b/lms/www/lms.py @@ -55,8 +55,8 @@ def get_meta(app_path): "keywords": "All Batches, Batches, Learn", "link": "/batches", } - - if re.match(r"^/batches/details/.*$", app_path): + if re.match(r"^batches/details/.*$", app_path): + print(app_path, "app_path") batch_name = app_path.split("/")[2] batch = frappe.db.get_value( "LMS Batch",