mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix connectionId remapping (#6269)
This commit is contained in:
@@ -21,7 +21,7 @@ export class ExtHostConnectionManagement extends ExtHostConnectionManagementShap
|
|||||||
public $getCurrentConnection(): Thenable<azdata.connection.ConnectionProfile> {
|
public $getCurrentConnection(): Thenable<azdata.connection.ConnectionProfile> {
|
||||||
let connection: any = this._proxy.$getCurrentConnection();
|
let connection: any = this._proxy.$getCurrentConnection();
|
||||||
connection.then((conn) => {
|
connection.then((conn) => {
|
||||||
if (conn && conn.providerId) {
|
if (conn) {
|
||||||
conn.providerId = conn.providerName;
|
conn.providerId = conn.providerName;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user