Stanley Gu

Results 5 comments of Stanley Gu

I couldn't figure out how to trigger the route change from the popup. I ended up using a workaround for now where I pass the original route as a query...

@hiromitz, yep that is where I ended up doing my redirect: ``` if (req.query.referrer) { res.redirect(req.query.referrer); } else { res.redirect('/'); } ``` However, since that call comes from the OAuth...

Thanks, this works, however, there is some error in the output. ``` assert.js:102 throw new assert.AssertionError({ ^ AssertionError: the field "buffer" already exists in this Struct type at Function.defineProperty (/Users/stanleyg/Dropbox/projects/libsbml/node_modules/ref-struct/lib/struct.js:205:3)...

That rename did the trick, now it runs into the `uLong` issue: ``` assert.js:102 throw new assert.AssertionError({ ^ AssertionError: Could not determine the `ffi_type` instance for type: ulong at Type...

Yes, here is the entire trace: ``` stanleyg$ node bindings.js assert.js:102 throw new assert.AssertionError({ ^ AssertionError: Could not determine the `ffi_type` instance for type: ulong at Type (/Users/stanleyg/Dropbox/projects/libsbml/node_modules/ffi/lib/type.js:121:3) at CIF...