This commit is contained in:
Peter Maquiran
2023-08-16 08:38:09 +01:00
parent 37e02a6ded
commit eb77736a60
2 changed files with 11 additions and 11 deletions
@@ -485,7 +485,7 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
const formData = new FormData();
formData.append("blobFile", blob);
this.ChatSystemService.getDmRoom(roomId).send({
this.ChatSystemService.getGroupRoom(roomId).send({
file: {
"type": "application/audio",
"msDuration": audioFile.value.msDuration,
@@ -655,7 +655,7 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
const formData = new FormData();
formData.append("blobFile", blob);
this.ChatSystemService.getDmRoom(roomId).send({
this.ChatSystemService.getGroupRoom(roomId).send({
file: {
"type": "application/img",
"guid": ''
@@ -708,7 +708,7 @@ export class GroupMessagesPage implements OnInit, AfterViewInit, OnDestroy {
const formData = new FormData();
formData.append("blobFile", blob);
this.ChatSystemService.getDmRoom(roomId).send({
this.ChatSystemService.getGroupRoom(roomId).send({
file: {
"type": "application/img",
"guid": ''
+8 -8
View File
@@ -1,12 +1,12 @@
export let versionData = {
"shortSHA": "2b0628146",
"SHA": "2b0628146b6772be4a5fc9f356f0b89acbb7278e",
"branch": "developer",
"lastCommitAuthor": "'Eudes Inácio'",
"lastCommitTime": "'Tue Aug 15 18:10:45 2023 +0100'",
"lastCommitMessage": "pull made",
"lastCommitNumber": "5169",
"shortSHA": "37e02a6de",
"SHA": "37e02a6ded365a1928894f6d97b7a74c593c383d",
"branch": "developer-prod",
"lastCommitAuthor": "'Peter Maquiran'",
"lastCommitTime": "'Wed Aug 16 08:01:45 2023 +0100'",
"lastCommitMessage": "fix",
"lastCommitNumber": "5170",
"change": "",
"changeStatus": "On branch developer\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/chat/group-messages/group-messages.page.ts\n\tmodified: src/app/pages/chat/messages/messages.page.ts",
"changeStatus": "On branch developer-prod\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/chat/group-messages/group-messages.page.ts",
"changeAuthor": "peter.maquiran"
}