Skip to content

Commit

Permalink
missing required "title" property when starting Qute LS lead to NPE
Browse files Browse the repository at this point in the history
Fixes #865

Signed-off-by: azerr <azerr@redhat.com>
  • Loading branch information
angelozerr committed Apr 27, 2023
1 parent 1868736 commit 7d08dc2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ private static String createAndStartProgress(String projectName, ProgressSupport

// Start progress
WorkDoneProgressBegin begin = new WorkDoneProgressBegin();
begin.setTitle("Loading '" + projectName + "' project");
begin.setMessage("Trying to load '" + projectName + "' as Qute project.");
begin.setPercentage(100);
progressSupport.notifyProgress(progressId, begin);
Expand Down

0 comments on commit 7d08dc2

Please sign in to comment.