We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a3998 commit 1787090Copy full SHA for 1787090
lua/flutter-tools/devices.lua
@@ -31,6 +31,8 @@ end
31
---@param device_type number
32
---@return Device?
33
function M.parse(line, device_type)
34
+ if line:find("Manufacturer") and line:find("Platform") then return end
35
+ if line:find("crashdata") then return end
36
local parts = vim.split(line, "•")
37
local is_emulator = device_type == EMULATOR
38
local name_index = not is_emulator and 1 or 2
0 commit comments