|
@@ -110,7 +110,7 @@ public class PhotoGroupController {
|
|
|
@RequestParam("file") MultipartFile file) {
|
|
|
|
|
|
LocalDateTime groupDate = null;
|
|
|
- if (groupDateStr != null) {
|
|
|
+ if (groupDateStr != null && !groupDateStr.isEmpty()) {
|
|
|
try {
|
|
|
long timestamp = Long.parseLong(groupDateStr);
|
|
|
Instant instant = Instant.ofEpochMilli(timestamp);
|