fix take picture

This commit is contained in:
Peter Maquiran
2023-03-14 09:56:48 +01:00
parent c825fb2d3c
commit ced8320dd2
2 changed files with 6 additions and 10 deletions
@@ -108,8 +108,6 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
audioPermissionStatus: 'granted' | 'denied' | 'prompt' | null = null audioPermissionStatus: 'granted' | 'denied' | 'prompt' | null = null
sessionStore = SessionStore sessionStore = SessionStore
convertBlobToBase64Worker;
constructor( constructor(
public popoverController: PopoverController, public popoverController: PopoverController,
private modalController: ModalController, private modalController: ModalController,
@@ -132,8 +130,6 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
private notificationService: NotificationsService, private notificationService: NotificationsService,
private router: Router private router: Router
) { ) {
this.convertBlobToBase64Worker = new Worker(new URL('./convertBlobToBase64.worker.js', import.meta.url));
this.loggedUser = SessionStore.user.ChatData['data']; this.loggedUser = SessionStore.user.ChatData['data'];
this.roomId = this.navParams.get('roomId'); this.roomId = this.navParams.get('roomId');
+6 -6
View File
@@ -1,12 +1,12 @@
export let versionData = { export let versionData = {
"shortSHA": "2b4b87997", "shortSHA": "c825fb2d3",
"SHA": "2b4b879970ce902dee81bc6046d08b6e5fe29bc8", "SHA": "c825fb2d3c654f90054b48f29c2c4e576daa15da",
"branch": "no_bug_movemente", "branch": "no_bug_movemente",
"lastCommitAuthor": "'Peter Maquiran'", "lastCommitAuthor": "'Peter Maquiran'",
"lastCommitTime": "'Fri Mar 10 15:46:37 2023 +0100'", "lastCommitTime": "'Tue Mar 14 09:50:40 2023 +0100'",
"lastCommitMessage": "remove duplication from publication", "lastCommitMessage": "fix chat camera",
"lastCommitNumber": "4868", "lastCommitNumber": "4869",
"change": "", "change": "",
"changeStatus": "On branch no_bug_movemente\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/chat/messages/messages.page.ts\n\tmodified: src/app/pages/publications/publications.page.ts\n\tmodified: src/app/shared/publication/view-publications/view-publications.page.ts", "changeStatus": "On branch no_bug_movemente\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/chat/messages/messages.page.ts",
"changeAuthor": "peter.maquiran" "changeAuthor": "peter.maquiran"
} }