Commit ecd14d6757eb12e66d7668eff509c10875abf855
Committed by
GitHub
Merge pull request #578 from urmyfaith/patch-1
fix PlatformKeepaliveExpireEvent typo
Showing
1 changed file
with
3 additions
and
3 deletions
src/main/java/com/genersoft/iot/vmp/gb28181/event/EventPublisher.java
| ... | ... | @@ -37,9 +37,9 @@ public class EventPublisher { |
| 37 | 37 | * @param platformGbId |
| 38 | 38 | */ |
| 39 | 39 | public void platformKeepaliveExpireEventPublish(String platformGbId){ |
| 40 | - PlatformKeepaliveExpireEvent platformNotRegisterEvent = new PlatformKeepaliveExpireEvent(this); | |
| 41 | - platformNotRegisterEvent.setPlatformGbID(platformGbId); | |
| 42 | - applicationEventPublisher.publishEvent(platformNotRegisterEvent); | |
| 40 | + PlatformKeepaliveExpireEvent platformKeepaliveExpireEvent = new PlatformKeepaliveExpireEvent(this); | |
| 41 | + platformKeepaliveExpireEvent.setPlatformGbID(platformGbId); | |
| 42 | + applicationEventPublisher.publishEvent(platformKeepaliveExpireEvent); | |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** | ... | ... |