Skip to content

Commit

Permalink
[Drive] Fix setup fail on shared drives
Browse files Browse the repository at this point in the history
  • Loading branch information
rhld16 authored Apr 9, 2023
1 parent 7d7bb28 commit fa878c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public AuthenticationProvider getAuthProvider() {
* @throws Exception
*/
public void setupSharedDrives(CommandSender initiator) throws Exception {
if (drives.size() > 0) {
if (drives != null && drives.size() > 0) {
logger.log(intl("google-pick-shared-drive"));

logger.log(
Expand Down

0 comments on commit fa878c9

Please sign in to comment.