[vlma-devel] commit: IRCNotifier.java: Set the user name and the real name. ( Adrien Grand )

git version control git at videolan.org
Tue Jun 17 20:06:07 CEST 2008


vlma | branch: master | Adrien Grand <jpountz at videolan.org> | Tue Jun 17 19:32:56 2008 +0200| [d7b75ae036cb0e072255622e7efdd113d1a5c79a]

IRCNotifier.java: Set the user name and the real name.

> http://git.videolan.org/gitweb.cgi/vlma.git/?a=commit;h=d7b75ae036cb0e072255622e7efdd113d1a5c79a
---

 .../org/videolan/vlma/notifier/IRCNotifier.java    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vlma-core/src/main/java/org/videolan/vlma/notifier/IRCNotifier.java b/vlma-core/src/main/java/org/videolan/vlma/notifier/IRCNotifier.java
index a781f48..714cc04 100644
--- a/vlma-core/src/main/java/org/videolan/vlma/notifier/IRCNotifier.java
+++ b/vlma-core/src/main/java/org/videolan/vlma/notifier/IRCNotifier.java
@@ -65,7 +65,7 @@ public class IRCNotifier extends Notifier {
         host = VLMa.getInstance().getString("vlma.notification.irc.host");
         port = VLMa.getInstance().getInt("vlma.notification.irc.port");
         chan = VLMa.getInstance().getString("vlma.notification.irc.chan");
-        conn = new IRCConnection(host, new int[] { port }, null, nick, null, null);
+        conn = new IRCConnection(host, new int[] { port }, null, nick, "vlma", "VLMa");
         conn.setEncoding("UTF-8");
         conn.addIRCEventListener(new Listener());
         conn.setPong(true);



More information about the vlma-devel mailing list