Import Instagram archive to a Bluesky account
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lint fix

+2 -2
+1 -1
src/media/InstagramExportedPost.ts
··· 43 43 backup_uri: string; 44 44 } 45 45 46 - export interface ImageMedia extends BaseMedia {} 46 + export type ImageMedia = BaseMedia 47 47 48 48 export interface VideoMedia extends BaseMedia { 49 49 dubbing_info: any[];
+1 -1
src/media/processors/InstagramMediaProcessor.test.ts
··· 1 1 import fs from "fs"; 2 2 3 3 import { InstagramMediaProcessor } from "./InstagramMediaProcessor"; 4 - import { InstagramExportedPost, VideoMedia, ImageMedia } from "../InstagramExportedPost"; 5 4 import { logger } from "../../logger/logger"; 5 + import { InstagramExportedPost, VideoMedia, ImageMedia } from "../InstagramExportedPost"; 6 6 7 7 // Mock the file system 8 8 jest.mock("fs", () => ({