remoteSearch: Fix typos in log messages
I have this compulsion to rid the world of the typo ‘DBus’. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1121
This commit is contained in:
parent
fb9854c003
commit
541847d8b6
@ -247,7 +247,7 @@ var RemoteSearchProvider = class {
|
|||||||
if (error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
|
if (error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
log('Received error from DBus search provider %s: %s'.format(this.id, String(error)));
|
log('Received error from D-Bus search provider %s: %s'.format(this.id, String(error)));
|
||||||
callback([]);
|
callback([]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -274,7 +274,7 @@ var RemoteSearchProvider = class {
|
|||||||
_getResultMetasFinished(results, error, callback) {
|
_getResultMetasFinished(results, error, callback) {
|
||||||
if (error) {
|
if (error) {
|
||||||
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
|
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
|
||||||
log('Received error from DBus search provider %s during GetResultMetas: %s'.format(this.id, String(error)));
|
log('Received error from D-Bus search provider %s during GetResultMetas: %s'.format(this.id, String(error)));
|
||||||
callback([]);
|
callback([]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user