Skip to content

Commit

Permalink
fix(aurelia): ensure all start code paths return a promise
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 15, 2015
1 parent 5f448f3 commit 0275251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aurelia.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class Aurelia {
*/
start(){
if(this.started){
return;
return Promise.resolve(this);
}

this.started = true;
Expand Down

0 comments on commit 0275251

Please sign in to comment.