Skip to content

Commit

Permalink
Fix issue MR-350 - VerifyDatabaseVersion (Config.Connections.Save) fa…
Browse files Browse the repository at this point in the history
…iled. Version string portion was too short or too long.
  • Loading branch information
rmcardle committed Feb 28, 2013
1 parent b0439ad commit a61fb5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.TXT
@@ -1,6 +1,7 @@
Fixed issue MR-339 - Connection group collapses with just one click
Fixed issue MR-340 - Object reference not set to an instance of an object.
Fixed issue MR-344 - Move "Always show panel tabs" option
Fixed issue MR-350 - VerifyDatabaseVersion (Config.Connections.Save) failed. Version string portion was too short or too long.
Fixed tabs not closing on double-click when the active tab is a PuTTY connection.

1.70 (2013-02-25):
Expand Down
2 changes: 1 addition & 1 deletion mRemoteV1/Config/Config.Connections.Save.vb
Expand Up @@ -80,7 +80,7 @@ Namespace Config
If (Not sqlDataReader.HasRows) Then Return True ' assume new empty database
sqlDataReader.Read()

databaseVersion = New System.Version(Convert.ToDouble(sqlDataReader.Item("confVersion"), CultureInfo.InvariantCulture))
databaseVersion = New Version(Convert.ToString(sqlDataReader.Item("confVersion"), CultureInfo.InvariantCulture))

sqlDataReader.Close()

Expand Down

0 comments on commit a61fb5c

Please sign in to comment.