changed the url scheme to make it easier to parse

This commit is contained in:
Jamie 2018-01-12 14:38:27 +00:00
commit 725077b45c

View file

@ -78,7 +78,7 @@ export class AppComponent implements OnInit {
}
this.identityService.getAccessToken().subscribe(x => {
const url = `ombi://${this.customizationSettings.applicationUrl}/${x}`;
const url = `ombi://${this.customizationSettings.applicationUrl}_${x}`;
window.location.assign(url);
});
}