Skip to content

Commit

Permalink
[hotfix] 업데이트된 강의 찾는 로직 반대로 들어가는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hank-Choi committed May 16, 2023
1 parent 8e2ddc7 commit a49de1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class SugangSnuSyncServiceImpl(
val created = (newMap.keys - oldMap.keys).map(newMap::getValue)
val updated = (newMap.keys intersect oldMap.keys)
.map { oldMap[it]!! to newMap[it]!! }
.filter { (old, new) -> old equalsMetadata new }
.filter { (old, new) -> !(old equalsMetadata new) }
.map { (old, new) ->
UpdatedLecture(
old, new,
Expand Down

0 comments on commit a49de1f

Please sign in to comment.