mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Use System.getProperty("line.separator") instead of \n
This commit is contained in:
parent
0847ddd7bf
commit
d789282b35
@ -157,7 +157,7 @@ public class GetInventoryRequestHandler implements MessageListener {
|
||||
|
||||
Filter filter = filterManager.getFilter();
|
||||
if (filter != null) {
|
||||
inventory.put(InventoryItem.filteredSeeds, Joiner.on(",\n").join(filter.getSeedNodes()));
|
||||
inventory.put(InventoryItem.filteredSeeds, Joiner.on("," + System.getProperty("line.separator")).join(filter.getSeedNodes()));
|
||||
}
|
||||
|
||||
log.info("Send inventory {} to {}", inventory, connection.getPeersNodeAddressOptional());
|
||||
|
Loading…
Reference in New Issue
Block a user