diff --git a/lib/domain/profiles/profile.dart b/lib/domain/profiles/profile.dart index 62768888..8371c211 100644 --- a/lib/domain/profiles/profile.dart +++ b/lib/domain/profiles/profile.dart @@ -52,7 +52,12 @@ class Profile with _$Profile { } } } - + if (title.isEmpty) { + final part = url.split("#").lastOrNull; + if (part != null) { + title = part; + } + } if (title.isEmpty) { final part = url.split("/").lastOrNull; if (part != null) {