summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyClient.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:58:49 +0000
committerfcolin2007-02-01 09:58:49 +0000
commit9afbd824a7fa39d3f1b03f8115d1012856031ebb (patch)
treed27c94ce3c4a90c8c56961219c6ca0a9d9cb5ded /CSharp/Ivy/IvyPPC/IvyClient.cs
parent101d33cf720a21a99044ad9dbebc495c5872f930 (diff)
downloadivy-csharp-9afbd824a7fa39d3f1b03f8115d1012856031ebb.zip
ivy-csharp-9afbd824a7fa39d3f1b03f8115d1012856031ebb.tar.gz
ivy-csharp-9afbd824a7fa39d3f1b03f8115d1012856031ebb.tar.bz2
ivy-csharp-9afbd824a7fa39d3f1b03f8115d1012856031ebb.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)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyClient.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyClient.cs b/CSharp/Ivy/IvyPPC/IvyClient.cs
index 3110a3e..d3dbca2 100644
--- a/CSharp/Ivy/IvyPPC/IvyClient.cs
+++ b/CSharp/Ivy/IvyPPC/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++;