# HG changeset patch # User Steven Robbins # Date 1268684879 0 # Node ID d34436318a3bb76149127e3462d6f6445175ad0f # Parent 0a353b3b9c0df6edb0daca94f65fd0ee350971f7 Fixed stupid TinyMessenger integration bug diff -r 0a353b3b9c0df6edb0daca94f65fd0ee350971f7 -r d34436318a3bb76149127e3462d6f6445175ad0f TinyIoC/TinyIoC.cs --- a/TinyIoC/TinyIoC.cs Mon Mar 15 20:13:12 2010 +0000 +++ b/TinyIoC/TinyIoC.cs Mon Mar 15 20:27:59 2010 +0000 @@ -1474,7 +1474,7 @@ #if TINYMESSENGER // Only register the TinyMessenger singleton if we are the root container - if (this._Parent != null) + if (this._Parent == null) this.Register(); #endif }