Merge pull request #12 from LemmyNet/fix_instances

Fix instances
This commit is contained in:
Dessalines 2021-04-07 16:18:21 -04:00 committed by GitHub
commit 34ba231833
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.10.0",
"version": "0.10.3",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",

View file

@ -117,6 +117,6 @@ export interface SaveSiteConfig {
export interface FederatedInstances {
linked: string[];
allowed: string[];
blocked: string[];
allowed?: string[];
blocked?: string[];
}