From 406e26c7b79c6c71c97fdee0aa66848fda0d0ae8 Mon Sep 17 00:00:00 2001 From: buengese Date: Mon, 22 Feb 2021 20:54:27 +0100 Subject: [PATCH] zoho: fix custom client id's --- backend/zoho/zoho.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/zoho/zoho.go b/backend/zoho/zoho.go index 64463a6de..50a240fa1 100644 --- a/backend/zoho/zoho.go +++ b/backend/zoho/zoho.go @@ -100,7 +100,7 @@ func init() { log.Fatalf("Failed to configure root directory: %v", err) } }, - Options: []fs.Option{{ + Options: append(oauthutil.SharedOptions, []fs.Option{{ Name: "region", Help: "Zoho region to connect to. You'll have to use the region you organization is registered in.", Examples: []fs.OptionExample{{ @@ -123,7 +123,7 @@ func init() { encoder.EncodeCtl | encoder.EncodeDel | encoder.EncodeInvalidUtf8), - }}, + }}...), }) }