forked from Cookies_Github_mirror/AquaDX
[aimedb] Change extId type to integer
This commit is contained in:
@@ -21,6 +21,6 @@ public class CardService {
|
||||
}
|
||||
|
||||
public Optional<Card> getCardByExtId(String extId) {
|
||||
return cardRepository.findByExtId(Long.parseLong(extId));
|
||||
return cardRepository.findByExtId(Integer.parseInt(extId));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user