dcorking / google-wave-resources

Automatically exported from code.google.com/p/google-wave-resources
0 stars 0 forks source link

Bug: event.getNewBlip() is null (WaveletBlipCreatedEvent) #680

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This is my code:

  @Capability(contexts = {Context.ALL})
  @Override
  public void onWaveletBlipCreated(WaveletBlipCreatedEvent event) {
      Blip blip = event.getBlip();              // this is OK
      Blip newblip = event.getNewBlip();        // this seems to return 
null
      String newblipID = event.getNewBlipId();  // the new ID is OK too
      if (newblip == null)
          blip.append("\n newblip is null.");
      }

==================================
Thanks!
YKY

Original issue reported on code.google.com by generic....@gmail.com on 14 Mar 2010 at 8:26

GoogleCodeExporter commented 9 years ago

Original comment by pamela.fox on 14 Mar 2010 at 8:45

GoogleCodeExporter commented 9 years ago

Original comment by pamela.fox on 19 Mar 2010 at 4:43

GoogleCodeExporter commented 9 years ago
This is fixed in the latest Java client library. Please download it and use it 
in your 
project.
http://code.google.com/p/wave-robot-java-client/downloads/list

Original comment by pamela.fox on 1 Apr 2010 at 8:10