Index: modules/NSCAClient/NSCAClient.h
===================================================================
--- modules/NSCAClient/NSCAClient.h	(revision f33c12f03a774b04fde52f07dab7399eddea3d3f)
+++ modules/NSCAClient/NSCAClient.h	(revision a87ce04e3c7a1696a9de2386727e8713114deda5)
@@ -60,5 +60,9 @@
 			password = recipient.get_string_data("password");
 			encryption = recipient.get_string_data("encryption");
-			time_delta = strEx::stol_as_time_sec(recipient.get_string_data("time offset"));
+			std::string tmp = recipient.get_string_data("time offset");
+			if (!tmp.empty())
+				time_delta = strEx::stol_as_time_sec(recipient.get_string_data("time offset"));
+			else
+				time_delta = 0;
 			net::url url = recipient.get_url(5667);
 			host = url.host;
