tickera-angular-components 0.0.1-dev.175 → 0.0.1-dev.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10055,8 +10055,10 @@ class TicketQrComponent {
|
|
|
10055
10055
|
return;
|
|
10056
10056
|
this.refreshing.set(true);
|
|
10057
10057
|
this.isFetching = true;
|
|
10058
|
-
this.
|
|
10059
|
-
|
|
10058
|
+
const service = this.isCustomer
|
|
10059
|
+
? this.ticketQrService.fetchMyQrToken
|
|
10060
|
+
: this.ticketQrService.fetchQrToken;
|
|
10061
|
+
service(this.ticketUuid)
|
|
10060
10062
|
.pipe(takeUntil$1(this.destroy$))
|
|
10061
10063
|
.subscribe({
|
|
10062
10064
|
next: (res) => {
|