mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 16:43:09 +02:00
Fix bug
This commit is contained in:
parent
5ddb047794
commit
0004944708
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ import { IFollow } from '../type';
|
||||||
|
|
||||||
export default async (actor: IRemoteUser, activity: IFollow): Promise<void> => {
|
export default async (actor: IRemoteUser, activity: IFollow): Promise<void> => {
|
||||||
const prefix = config.url + '/@';
|
const prefix = config.url + '/@';
|
||||||
const id = typeof activity == 'string' ? activity : activity.id;
|
const id = typeof activity.object == 'string' ? activity.object : activity.object.id;
|
||||||
|
|
||||||
if (!id.startsWith(prefix)) {
|
if (!id.startsWith(prefix)) {
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue