diff --git a/packages/multistream-select/src/select.ts b/packages/multistream-select/src/select.ts index d877fd4a28..950c700cea 100644 --- a/packages/multistream-select/src/select.ts +++ b/packages/multistream-select/src/select.ts @@ -65,7 +65,7 @@ export interface SelectStream extends Duplex { export async function select (stream: Stream, protocols: string | string[], options: MultistreamSelectInit): Promise> { protocols = Array.isArray(protocols) ? [...protocols] : [protocols] - if (protocols.length === 1 && options.negotiateFully === false) { + if (protocols.length === 1) { return optimisticSelect(stream, protocols[0], options) }