From 10d205873824ccd8846fb39aafef20005498183c Mon Sep 17 00:00:00 2001 From: Ari Kornfeld Date: Tue, 2 Apr 2019 22:20:29 -0700 Subject: [PATCH] Request B2 "Backblaze Account or Application ID" (rather than "Account ID") fixes #539 (Duplicacy init for B2 storage still ask for account ID) --- src/duplicacy_storage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/duplicacy_storage.go b/src/duplicacy_storage.go index fd6493f..c229bdc 100644 --- a/src/duplicacy_storage.go +++ b/src/duplicacy_storage.go @@ -527,8 +527,8 @@ func CreateStorage(preference Preference, resetPassword bool, threads int) (stor } else if matched[1] == "b2" { bucket := matched[3] - accountID := GetPassword(preference, "b2_id", "Enter Backblaze Account ID:", true, resetPassword) - applicationKey := GetPassword(preference, "b2_key", "Enter Backblaze Application Key:", true, resetPassword) + accountID := GetPassword(preference, "b2_id", "Enter Backblaze Account or Application ID:", true, resetPassword) + applicationKey := GetPassword(preference, "b2_key", "Enter Corresponding Backblaze Application Key:", true, resetPassword) b2Storage, err := CreateB2Storage(accountID, applicationKey, bucket, threads) if err != nil {