Skip to content

Commit 05adb30

Browse files
authored
Merge pull request support-project#1054 from support-project/issue1051_fix_pin
Fixed error when registering article pinning
2 parents 7cf0bfc + 921b278 commit 05adb30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/support/project/knowledge/dao/PinsDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ public void insertPinByAdmin(Long id) {
6969
entity.setInsertUser(ADMIN_ID);
7070
entity.setInsertDatetime(new Timestamp(DateUtils.now().getTime()));
7171
entity.setDeleteFlag(0);
72-
rawPhysicalInsert(entity);
72+
physicalInsert(entity);
7373
}
7474
}

0 commit comments

Comments
 (0)