correct logic

This commit is contained in:
Sam 2015-08-17 10:52:41 +10:00
parent 72684c3c7f
commit 84c6c2b48c
1 changed files with 6 additions and 5 deletions

View File

@ -40,12 +40,13 @@ export default Em.Controller.extend({
let url = '/search?q=' + encodeURIComponent(this.get('term')); let url = '/search?q=' + encodeURIComponent(this.get('term'));
const searchContext = this.get('searchContext'); const searchContext = this.get('searchContext');
if (this.get('searchContextEnabled') && if (this.get('searchContextEnabled')) {
searchContext.id.toLowerCase() === this.get('currentUser.username_lower')) { if (searchContext.id.toLowerCase() === this.get('currentUser.username_lower')) {
url += ' in:private'; url += ' in:private';
} else { } else {
url += encodeURIComponent(" " + searchContext.type + ":" + searchContext.id); url += encodeURIComponent(" " + searchContext.type + ":" + searchContext.id);
} }
}
return url; return url;