Skip to content
Snippets Groups Projects
Unverified Commit b6556c7f authored by xianon's avatar xianon Committed by GitHub
Browse files

リモートユーザーを正しくブロックできるように修正する (#9027)

parent 9d5901a7
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ import { Blocking } from '@/models/entities/blocking.js';
* @param block The block to be rendered. The blockee relation must be loaded.
*/
export function renderBlock(block: Blocking) {
if (block.blockee?.url == null) {
if (block.blockee?.uri == null) {
throw new Error('renderBlock: missing blockee uri');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment