Code review comment for lp:~michael-sheldon/webbrowser-app/fix-1354388

Revision history for this message
Olivier Tilloy (osomon) wrote :

19 + if(actualUrl.length > 0) {

actualUrl is of type url, which doesn’t have a 'length' property, so actualUrl.length will always return undefined. You’ll need to do "actualUrl.toString().length".

review: Needs Fixing

« Back to merge proposal