From 9282647ca293829862d7f121840a96073393e676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20P=C4=99giel?= Date: Tue, 18 Feb 2025 14:06:49 +0100 Subject: [PATCH] Path split does not work for uppercase folders in GIT --- src/utils/zcl_abapgit_path.clas.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/zcl_abapgit_path.clas.abap b/src/utils/zcl_abapgit_path.clas.abap index 9c3186bb2..a8f204d63 100644 --- a/src/utils/zcl_abapgit_path.clas.abap +++ b/src/utils/zcl_abapgit_path.clas.abap @@ -125,7 +125,7 @@ CLASS ZCL_ABAPGIT_PATH IMPLEMENTATION. ev_filename = iv_fullpath. ENDIF. - ev_filename = cl_http_utility=>unescape_url( escaped = ev_filename ). + ev_filename = cl_http_utility=>unescape_url( escaped = to_lower( ev_filename ) ). ENDMETHOD. ENDCLASS.