File gnome-shell-fix-NMDevice-get-path.patch of Package gnome-shell
Index: gnome-shell-41.4/js/ui/status/network.js
===================================================================
--- gnome-shell-41.4.orig/js/ui/status/network.js
+++ gnome-shell-41.4/js/ui/status/network.js
@@ -1001,7 +1001,7 @@ class NMWirelessDialog extends ModalDial
// 802.1x-enabled APs require further configuration, so they're
// handled in gnome-control-center
launchSettingsPanel('wifi', 'connect-8021x-wifi',
- this._device.get_path(), accessPoints[0].get_path());
+ NM.Object.prototype.get_path.call(this._device), accessPoints[0].get_path());
} else {
let connection = new NM.SimpleConnection();
if (this._privateConnections) {