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