Fix jump to objects with special characters (#4558)

Fixes jump to an object in case the object name contains escaped characters

Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Marc Bernard 2021-02-23 23:55:23 -05:00 committed by GitHub
parent db61b57b80
commit 7da94f396d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -675,6 +675,7 @@ CLASS zcl_abapgit_gui_router IMPLEMENTATION.
WHEN zif_abapgit_definitions=>c_action-jump. " Open object editor
ls_item-obj_type = ii_event->query( )->get( 'TYPE' ).
ls_item-obj_name = ii_event->query( )->get( 'NAME' ).
ls_item-obj_name = cl_http_utility=>unescape_url( |{ ls_item-obj_name }| ).
li_html_viewer = zcl_abapgit_ui_factory=>get_html_viewer( ).