aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorBen Fayers <bfayers@users.noreply.github.com>2019-01-06 00:21:20 +0000
committerJoshua M. Boniface <joshua@boniface.me>2019-01-05 19:21:20 -0500
commitb39585cbf6ccc519161e8f6420daaa046a26bf32 (patch)
tree6bae45c12ea8530e5af2ceaceaa50e715ea7087c /Emby.Server.Implementations
parent73c6a3f29a12c62d50a267638e7616d9ff28edcd (diff)
Change "who is EmbyServer?" and other udp responders to jellyfin alternatives. (#400)
* replace emby server udp responders with Jellyfin responders * remove unnecessary second udp responder * readdemby listener * use false instead of true dunni why but it was like that sooo
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Udp/UdpServer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Udp/UdpServer.cs b/Emby.Server.Implementations/Udp/UdpServer.cs
index 8cacc1124..275bd83ea 100644
--- a/Emby.Server.Implementations/Udp/UdpServer.cs
+++ b/Emby.Server.Implementations/Udp/UdpServer.cs
@@ -40,6 +40,7 @@ namespace Emby.Server.Implementations.Udp
_json = json;
_socketFactory = socketFactory;
+ AddMessageResponder("who is JellyfinServer?", true, RespondToV2Message);
AddMessageResponder("who is EmbyServer?", true, RespondToV2Message);
AddMessageResponder("who is MediaBrowserServer_v2?", false, RespondToV2Message);
}