mirror of https://github.com/usbharu/Hideout.git
fix: ドメイン取得方法を修正
This commit is contained in:
parent
e800fa1593
commit
e8965f798a
|
@ -93,7 +93,7 @@ class ActivityPubUserServiceImpl(
|
|||
RemoteUserCreateDto(
|
||||
name = person.preferredUsername
|
||||
?: throw IllegalActivityPubObjectException("preferredUsername is null"),
|
||||
domain = url.substringAfter("://").substringBeforeLast("/"),
|
||||
domain = url.substringAfter("://").substringBefore("/"),
|
||||
screenName = (person.name ?: person.preferredUsername)
|
||||
?: throw IllegalActivityPubObjectException("preferredUsername is null"),
|
||||
description = person.summary.orEmpty(),
|
||||
|
|
Loading…
Reference in New Issue