diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Util.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 51ced7b..745da17 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -1508,7 +1508,21 @@ namespace OpenSim.Framework | |||
1508 | // When OpenSim interacts with a database or sends data over the wire, it must send this in en_US culture | 1508 | // When OpenSim interacts with a database or sends data over the wire, it must send this in en_US culture |
1509 | // so that we don't encounter problems where, for instance, data is saved with a culture that uses commas | 1509 | // so that we don't encounter problems where, for instance, data is saved with a culture that uses commas |
1510 | // for decimals places but is read by a culture that treats commas as number seperators. | 1510 | // for decimals places but is read by a culture that treats commas as number seperators. |
1511 | WaitCallback realCallback = delegate(object o) { Culture.SetCurrentCulture(); callback(o); }; | 1511 | WaitCallback realCallback = delegate(object o) |
1512 | { | ||
1513 | Culture.SetCurrentCulture(); | ||
1514 | |||
1515 | try | ||
1516 | { | ||
1517 | callback(o); | ||
1518 | } | ||
1519 | catch (Exception e) | ||
1520 | { | ||
1521 | m_log.ErrorFormat( | ||
1522 | "[UTIL]: Continuing after async_call_method thread terminated with exception {0}{1}", | ||
1523 | e.Message, e.StackTrace); | ||
1524 | } | ||
1525 | }; | ||
1512 | 1526 | ||
1513 | switch (FireAndForgetMethod) | 1527 | switch (FireAndForgetMethod) |
1514 | { | 1528 | { |