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
@@ -221,7 +221,7 @@ impl FromId<DbConn> for Comment {
type Error = Error;
type Object = Note;
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)
}