Fix dummy credentials for Dropbox.

The client disallows empty credentials, making KP2A force close.
This commit is contained in:
Gilbert Gilb's
2018-08-25 15:26:38 +02:00
parent 7a44cf6e26
commit 0f1fd0e367

View File

@@ -2,12 +2,12 @@ namespace keepass2android.Io
{
public partial class DropboxFileStorage
{
private const string AppKey = "";
private const string AppSecret = "";
private const string AppKey = "dummy";
private const string AppSecret = "dummy";
}
public partial class DropboxAppFolderFileStorage
{
private const string AppKey = "";
private const string AppSecret = "";
private const string AppKey = "dummy";
private const string AppSecret = "dummy";
}
}
}