🔊 Change log message
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 27 Oct 2021 11:10:26 +0000 (13:10 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 27 Oct 2021 11:10:26 +0000 (13:10 +0200)
The old message was pretty misleading.

src/main/java/net/pterodactylus/xdcc/core/Core.java

index 01460c4..c375308 100644 (file)
@@ -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());