Merge pull request #853 from christianguenter2/ISSUE_834

Bugfix access deleted branch in news page
This commit is contained in:
Lars Hvam 2017-07-23 16:20:19 +02:00 committed by GitHub
commit 28b5842d8f

View File

@ -112,8 +112,13 @@ CLASS lcl_news IMPLEMENTATION.
lv_last_seen = lcl_app=>user( )->get_repo_last_change_seen( lv_url ). lv_last_seen = lcl_app=>user( )->get_repo_last_change_seen( lv_url ).
TRY.
" Find changelog " Find changelog
lt_remote = io_repo->get_files_remote( ). lt_remote = io_repo->get_files_remote( ).
CATCH lcx_exception.
RETURN.
ENDTRY.
READ TABLE lt_remote ASSIGNING <file> READ TABLE lt_remote ASSIGNING <file>
WITH KEY path = lc_log_path filename = lc_log_filename. WITH KEY path = lc_log_path filename = lc_log_filename.