diff options
author | fcolin | 2007-02-01 09:47:23 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:47:23 +0000 |
commit | 6f44a648cbb775839123611a468317b9a399a969 (patch) | |
tree | f1138a7d5705bdc4b4780c82e501c1660bea75f1 | |
parent | 20be088fae37407981218836e78b5e45dd03f57d (diff) | |
download | ivy-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.cs | 2 |
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++;
|