summaryrefslogtreecommitdiff
path: root/Ivy
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy')
-rw-r--r--Ivy/Ivy.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ivy/Ivy.cs b/Ivy/Ivy.cs
index af9e67e..e8590f6 100644
--- a/Ivy/Ivy.cs
+++ b/Ivy/Ivy.cs
@@ -506,6 +506,15 @@ namespace IvyBus
/// </remarks>
public void Start(string domainBus)
{
+ // check for ReadyMessage empty
+ if (string.IsNullOrEmpty(ready_message))
+ {
+ if ( string.IsNullOrEmpty ( Properties.Settings.Default.ReadyMessage ) )
+ ready_message = AppName + " READY";
+ else
+ ready_message = Properties.Settings.Default.ReadyMessage;
+
+ }
domainBus = GetDomain(domainBus);
// check for IPV6 mode
Domain[] d = parseDomains(domainBus);