Explorar el Código

Avoids logging query string on callback uri

main
Eric Amodio hace 2 años
padre
commit
fbe0caade5
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/plus/subscription/serverConnection.ts

+ 2
- 1
src/plus/subscription/serverConnection.ts Ver fichero

@ -166,7 +166,8 @@ export class ServerConnection implements Disposable {
}
class UriEventHandler extends EventEmitter<Uri> implements UriHandler {
@log()
// Strip query strings from the Uri to avoid logging token, etc
@log<UriEventHandler['handleUri']>({ args: { 0: u => u.with({ query: '' }).toString(false) } })
public handleUri(uri: Uri) {
this.fire(uri);
}

Cargando…
Cancelar
Guardar