mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 08:58:19 +01:00
Update electron to 13.1.2
This commit is contained in:
@@ -8,6 +8,8 @@ import * as path from 'path';
|
||||
import AbortController from 'abort-controller';
|
||||
import { MIMEType, IMAGE_JPEG } from '../../types/MIME';
|
||||
|
||||
import { typedArrayToArrayBuffer } from '../../Crypto';
|
||||
|
||||
import {
|
||||
fetchLinkPreviewImage,
|
||||
fetchLinkPreviewMetadata,
|
||||
@@ -1155,7 +1157,7 @@ describe('link preview fetching', () => {
|
||||
new AbortController().signal
|
||||
),
|
||||
{
|
||||
data: fixture.buffer,
|
||||
data: typedArrayToArrayBuffer(fixture),
|
||||
contentType: contentType as MIMEType,
|
||||
}
|
||||
);
|
||||
@@ -1240,7 +1242,7 @@ describe('link preview fetching', () => {
|
||||
new AbortController().signal
|
||||
),
|
||||
{
|
||||
data: fixture.buffer,
|
||||
data: typedArrayToArrayBuffer(fixture),
|
||||
contentType: IMAGE_JPEG,
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user