File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 147147 }
148148
149149 const subscriptions = response . result . subscriptions ;
150- if ( ! subscriptions || usubscriptionssers . length == 0 ) {
150+ if ( ! subscriptions || subscriptions . length == 0 ) {
151151 document . getElementById ( 'content' ) . innerText = 'No subscriptions found.' ;
152152 return ;
153153 }
Original file line number Diff line number Diff line change 5959 * Callback after api.js is loaded.
6060 */
6161 function gapiLoaded ( ) {
62- gapi . load ( 'client:picker' , intializePicker ) ;
62+ gapi . load ( 'client:picker' , initializePicker ) ;
6363 }
6464
6565 /**
6666 * Callback after the API client is loaded. Loads the
6767 * discovery doc to initialize the API.
6868 */
69- async function intializePicker ( ) {
69+ async function initializePicker ( ) {
7070 await gapi . client . load ( 'https://www.googleapis.com/discovery/v1/apis/drive/v3/rest' ) ;
7171 pickerInited = true ;
7272 maybeEnableButtons ( ) ;
You can’t perform that action at this time.
0 commit comments