mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
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:
parent
db61b57b80
commit
7da94f396d
|
@ -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( ).
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user