Rename: from_db07() -> from_db()

This commit is contained in:
Kitaiti Makoto
2022-05-03 01:23:37 +09:00
parent 06d2f68ecd
commit 7dd56a71e3
8 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -365,7 +365,7 @@ impl FromId<DbConn> for Blog {
type Error = Error;
type Object = CustomGroup;
fn from_db07(conn: &DbConn, id: &str) -> Result<Self> {
fn from_db(conn: &DbConn, id: &str) -> Result<Self> {
Self::find_by_ap_url(conn, id)
}