summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:47:23 +0000
committerfcolin2007-02-01 09:47:23 +0000
commit6f44a648cbb775839123611a468317b9a399a969 (patch)
treef1138a7d5705bdc4b4780c82e501c1660bea75f1
parent20be088fae37407981218836e78b5e45dd03f57d (diff)
downloadivy-csharp-6f44a648cbb775839123611a468317b9a399a969.zip
ivy-csharp-6f44a648cbb775839123611a468317b9a399a969.tar.gz
ivy-csharp-6f44a648cbb775839123611a468317b9a399a969.tar.bz2
ivy-csharp-6f44a648cbb775839123611a468317b9a399a969.tar.xz
Utilisateur : Fcolin Date : 20/04/06 Heure : 14:00 Archivé dans $/CSharp/Ivy/Ivy Commentaire: mise au point timer , ca manque de precision !!! (vss 44)
-rw-r--r--CSharp/Ivy/Ivy/IvyClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/Ivy/IvyClient.cs b/CSharp/Ivy/Ivy/IvyClient.cs
index 3110a3e..d3dbca2 100644
--- a/CSharp/Ivy/Ivy/IvyClient.cs
+++ b/CSharp/Ivy/Ivy/IvyClient.cs
@@ -252,7 +252,7 @@ namespace IvyBus
foreach (IvyBindingBase bind in bindings.Values )
{
string[] args = bind.Match(message);
- if (args!=null)
+ if ( stream != null && args!=null )
{
stream.TokenMsg(bind.key, args);
count++;