Winify – Diff between revs 11 and 12

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 12
Line 52... Line 52...
52 foreach (var server in e.NewItems.OfType<Server>()) 52 foreach (var server in e.NewItems.OfType<Server>())
53 { 53 {
54 var connection = new GotifyConnection(); 54 var connection = new GotifyConnection();
55 connection.GotifyNotification += Connection_GotifyNotification; 55 connection.GotifyNotification += Connection_GotifyNotification;
Line 56... Line 56...
56   56  
57 connection.Start(server.Username, server.Password, server.Host, server.Port); 57 connection.Start(server.Username, server.Password, server.Url);
58 _gotifyConnections.TryAdd(server.Name, connection); 58 _gotifyConnections.TryAdd(server.Name, connection);
59 } 59 }
Line 60... Line 60...
60 } 60 }