Skip to content

Commit 86472de

Browse files
Fix duplicate enum value
1 parent c322386 commit 86472de

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Nasdaq/Nasdaq_PsxEquities_TotalView_Itch_v5_0_Dissector.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2856,10 +2856,10 @@ nasdaq_psxequities_totalview_itch_v5_0.ipo_flag.size = 1
28562856
-- Display: Ipo Flag
28572857
nasdaq_psxequities_totalview_itch_v5_0.ipo_flag.display = function(value)
28582858
if value == "Y" then
2859-
return "Ipo Flag: Nasdaq Listed Instrument (Y)"
2859+
return "Ipo Flag: Yes (Y)"
28602860
end
28612861
if value == "N" then
2862-
return "Ipo Flag: Nasdaq Listed Instrument (N)"
2862+
return "Ipo Flag: No (N)"
28632863
end
28642864
if value == " " then
28652865
return "Ipo Flag: Na (<whitespace>)"
@@ -2998,10 +2998,10 @@ nasdaq_psxequities_totalview_itch_v5_0.round_lots_only.size = 1
29982998
-- Display: Round Lots Only
29992999
nasdaq_psxequities_totalview_itch_v5_0.round_lots_only.display = function(value)
30003000
if value == "Y" then
3001-
return "Round Lots Only: Nasdaq Psx (Y)"
3001+
return "Round Lots Only: Yes (Y)"
30023002
end
30033003
if value == "N" then
3004-
return "Round Lots Only: Nasdaq Psx (N)"
3004+
return "Round Lots Only: No (N)"
30053005
end
30063006

30073007
return "Round Lots Only: Unknown("..value..")"

0 commit comments

Comments
 (0)