Skip to content

Commit 93072cf

Browse files
committed
refactor: Fixed incorrect placeholder in updateProgress Method
1 parent 5d54083 commit 93072cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jabref/gui/mergeentries/MultiEntryMergeWithFetchedDataAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private void logEntryDetails(BibEntry entry) {
140140

141141
private void updateProgress(int currentIndex, int totalEntries, BackgroundTask<?> task) {
142142
Platform.runLater(() -> {
143-
task.updateMessage(Localization.lang("Fetching entry %d of %d", currentIndex + 1, totalEntries));
143+
task.updateMessage(Localization.lang("Fetching entry %0 of %1", currentIndex + 1, totalEntries));
144144
task.updateProgress(currentIndex, totalEntries);
145145
});
146146
}

0 commit comments

Comments
 (0)