diff --git a/src/zabapgit_news.prog.abap b/src/zabapgit_news.prog.abap index 7a6f5a7d6..ceb19df72 100644 --- a/src/zabapgit_news.prog.abap +++ b/src/zabapgit_news.prog.abap @@ -112,8 +112,13 @@ CLASS lcl_news IMPLEMENTATION. lv_last_seen = lcl_app=>user( )->get_repo_last_change_seen( lv_url ). - " Find changelog - lt_remote = io_repo->get_files_remote( ). + TRY. + " Find changelog + lt_remote = io_repo->get_files_remote( ). + CATCH lcx_exception. + RETURN. + ENDTRY. + READ TABLE lt_remote ASSIGNING WITH KEY path = lc_log_path filename = lc_log_filename.