2024.11.0-yumechinokuni.7 #41

Merged
yume merged 45 commits from develop into master 2024-11-22 10:16:03 -06:00
Showing only changes of commit 9052a02598 - Show all commits

View file

@ -611,7 +611,7 @@ export function yumeDowncastRemove(object: IObject): IRemove | null {
export function yumeDowncastLike(object: IObject): ILike | null { export function yumeDowncastLike(object: IObject): ILike | null {
if (getApType(object) !== 'Like') return null; if (getApType(object) !== 'Like') return null;
const obj = object as ILike; const obj = object as ILike;
if (!obj.actor || !obj.object || !obj.target) return null; if (!obj.actor || !obj.object) return null;
return { return {
...extractMisskeyVendorKeys(object), ...extractMisskeyVendorKeys(object),
...extractSafe(object), ...extractSafe(object),