chore(core): remove repetitive word (#9136)

Signed-off-by: studystill <chenghuiyue@outlook.com>
This commit is contained in:
studystill 2024-03-11 08:43:12 +08:00 committed by GitHub
parent 45384ab3aa
commit db1ea98512
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@
const linuxIpcProtocolEnabled = __TEMPLATE_linux_ipc_protocol_enabled__
let customProtocolIpcFailed = false
// on Linux we only use the custom-protocol-based IPC if the the linux-ipc-protocol Cargo feature is enabled
// on Linux we only use the custom-protocol-based IPC if the linux-ipc-protocol Cargo feature is enabled
// on Android we never use it because Android does not have support to reading the request body
const canUseCustomProtocol =
osName === 'linux' ? linuxIpcProtocolEnabled : osName !== 'android'