From: David ‘Bombe’ Roden Date: Wed, 27 Oct 2021 11:10:26 +0000 (+0200) Subject: 🔊 Change log message X-Git-Url: https://git.pterodactylus.net/?p=xudocci.git;a=commitdiff_plain;h=e6ad4554a856422283f4c57f9dd0d60da5812611 🔊 Change log message The old message was pretty misleading. --- diff --git a/src/main/java/net/pterodactylus/xdcc/core/Core.java b/src/main/java/net/pterodactylus/xdcc/core/Core.java index 01460c4..c375308 100644 --- a/src/main/java/net/pterodactylus/xdcc/core/Core.java +++ b/src/main/java/net/pterodactylus/xdcc/core/Core.java @@ -913,7 +913,7 @@ public class Core extends AbstractExecutionThreadService { .filter(it -> it.filename().equals(dccSendReceived.filename())) .findFirst() .orElse(openDownloads.iterator().next()); - eventBus.post(new GenericMessage(format("Found no offer for %s, using other download from %s, %s.", dccSendReceived.filename(), dccSendReceived.source(), download.filename()))); + eventBus.post(new GenericMessage(format("Downloading %s from %s as %s.", dccSendReceived.filename(), dccSendReceived.source(), download.filename()))); /* check if the file already exists. */ File outputFile = new File(temporaryDirectory, dccSendReceived.filename());