Skip to content

Commit 83ffc5c

Browse files
chore: Update dist/ and docs/ directories
1 parent 824f515 commit 83ffc5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/OAuth2.gs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Service_.prototype.setCodeVerififer = function(codeVerifier) {
233233
*/
234234
Service_.prototype.generateCodeVerifier = function() {
235235
const rawBytes = [];
236-
for (let i = 0; i < 32; ++i) {
236+
for (var i = 0; i < 32; ++i) {
237237
const r = Math.floor(Math.random() * 255);
238238
rawBytes[i] = r;
239239
}

0 commit comments

Comments
 (0)