fix build
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2024-01-04 22:35:40 +02:00
parent f82109b6b3
commit e73aa303a8
2 changed files with 6 additions and 7 deletions

View File

@ -7,7 +7,6 @@ import { FormattedMessage, useIntl } from "react-intl";
import CloseButton from "@/Components/Button/CloseButton";
import Icon from "@/Components/Icons/Icon";
import Modal from "@/Components/Modal/Modal";
import { Tab } from "@/Components/Tabs/Tabs";
import Tabs from "@/Components/Tabs/Tabs";
import ProfileImage from "@/Components/User/ProfileImage";
import { formatShort } from "@/Utils/Number";

View File

@ -95,12 +95,12 @@ class IndexedDB extends Dexie {
this.saveQueue.push({ event, tags });
}
private async startReadQueue() {
if (!this.isProcessingQueue && this.readQueue.size > 0) {
this.isProcessingQueue = true;
for (const [key, task] of this.readQueue.entries()) {
console.log('starting idb task', key);
console.log("starting idb task", key);
console.time(key);
await task();
this.readQueue.delete(key);
@ -116,7 +116,7 @@ class IndexedDB extends Dexie {
}
getByAuthors = async (callback: (event: TaggedNostrEvent) => void, limit?: number) => {
this.enqueueRead('getByAuthors', async () => {
this.enqueueRead("getByAuthors", async () => {
const authors = [...this.subscribedAuthors];
this.subscribedAuthors.clear();
@ -129,7 +129,7 @@ class IndexedDB extends Dexie {
};
getByEventIds = async (callback: (event: TaggedNostrEvent) => void) => {
this.enqueueRead('getByEventIds', async () => {
this.enqueueRead("getByEventIds", async () => {
const ids = [...this.subscribedEventIds];
this.subscribedEventIds.clear();
await this.events.where("id").anyOf(ids).each(callback);
@ -137,7 +137,7 @@ class IndexedDB extends Dexie {
};
getByTags = async (callback: (event: TaggedNostrEvent) => void) => {
this.enqueueRead('getByTags', async () => {
this.enqueueRead("getByTags", async () => {
const tagPairs = [...this.subscribedTags].map(tag => tag.split("|"));
this.subscribedTags.clear();
@ -151,7 +151,7 @@ class IndexedDB extends Dexie {
};
getByAuthorsAndKinds = async (callback: (event: TaggedNostrEvent) => void) => {
this.enqueueRead('authorsAndKinds', async () => {
this.enqueueRead("authorsAndKinds", async () => {
const authorsAndKinds = [...this.subscribedAuthorsAndKinds];
this.subscribedAuthorsAndKinds.clear();
const pairs = authorsAndKinds.map(pair => {