Comment 23 for bug 1088775

Revision history for this message
Vinu Joseph (jvinu22) wrote :

@Vampire
the fix

To replace
      m["privacy"]["description"] = data["privacy"]["description"]

by

      if data["privacy"].has_key("description"):
        m["privacy"]["description"] = data["privacy"]["description"]
      else:
        m["privacy"]["description"] = "Unknown"

Worked,Much Appreciated

the line number in the default Gwibber version in the 12.04LTS was 210