diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-09 01:18:59 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-03-09 01:18:59 +0800 |
commit | b27e3726d374beca4ba3aaf384d22c488edc3590 (patch) | |
tree | 3e508110ac4dd28938891ee59f1f6618d28cbf02 | |
parent | 26ef41ebb67957d65436624b03af1f9ac18f58e5 (diff) | |
download | gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar.gz gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar.bz2 gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar.lz gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar.xz gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.tar.zst gsoc2013-empathy-b27e3726d374beca4ba3aaf384d22c488edc3590.zip |
display a debug message if we can't get the TpContact
-rw-r--r-- | src/empathy-call-observer.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/empathy-call-observer.c b/src/empathy-call-observer.c index 179ed595a..ee8adc406 100644 --- a/src/empathy-call-observer.c +++ b/src/empathy-call-observer.c @@ -120,7 +120,10 @@ get_contact_cb (TpConnection *connection, GdkPixbuf *pixbuf; if (n_contacts != 1) - return; + { + DEBUG ("Failed to get TpContact; ignoring notification bubble"); + return; + } contact = contacts[0]; |