You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
google.Drive.BuildFileHierarchy is a recursive function that returns nil when it encounters a Google Drive API error. This can cause a panic when a recursive call fails its API call and returns nil. This is because google/Drive.go line 191 does not check the result of calling BuildFileHierarchy for nil.
This error was discovered when a Google Drive API call returned a userRateLimitExceeded response.
The text was updated successfully, but these errors were encountered:
google.Drive.BuildFileHierarchy
is a recursive function that returnsnil
when it encounters a Google Drive API error. This can cause a panic when a recursive call fails its API call and returnsnil
. This is becausegoogle/Drive.go
line 191 does not check the result of callingBuildFileHierarchy
fornil
.This error was discovered when a Google Drive API call returned a
userRateLimitExceeded
response.The text was updated successfully, but these errors were encountered: