Skip to content

Commit

Permalink
Removed duplicated semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubén Díaz authored Jul 28, 2017
1 parent 95f84cf commit 42a34f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/shared/security/httpClient.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class HttpClient {
return observer.next(data);
}, (error: any) => {
if (error.status === 400 || error.status === 500) {
this.auth.setLogged(false);;
this.auth.setLogged(false);
this.headers.delete('x-csrf-token');
this.router.navigate(['/login']);
}
Expand All @@ -48,7 +48,7 @@ export class HttpClient {
return observer.next(res);
}, (error: any) => {
if (error.status === 400 || error.status === 500) {
this.auth.setLogged(false);;
this.auth.setLogged(false);
this.headers.delete('x-csrf-token');
this.router.navigate(['/login']);
}
Expand All @@ -65,7 +65,7 @@ export class HttpClient {
return observer.next(data);
}, (error: any) => {
if (error.status === 400 || error.status === 500) {
this.auth.setLogged(false);;
this.auth.setLogged(false);
this.headers.delete('x-csrf-token');
this.router.navigate(['/login']);
}
Expand Down

0 comments on commit 42a34f0

Please sign in to comment.