forked from midou/invidious
videos: fix 'Arithmetic overflow' error
This commit is contained in:
@@ -280,7 +280,7 @@ struct Video
|
|||||||
{% for op, type in {i32: Int32, i64: Int64} %}
|
{% for op, type in {i32: Int32, i64: Int64} %}
|
||||||
private macro getset_{{op}}(name)
|
private macro getset_{{op}}(name)
|
||||||
def \{{name.id.underscore}} : {{type}}
|
def \{{name.id.underscore}} : {{type}}
|
||||||
return info[\{{name.stringify}}]?.try &.as_i.to_{{op}} || 0_{{op}}
|
return info[\{{name.stringify}}]?.try &.as_i64.to_{{op}} || 0_{{op}}
|
||||||
end
|
end
|
||||||
|
|
||||||
def \{{name.id.underscore}}=(value : Int)
|
def \{{name.id.underscore}}=(value : Int)
|
||||||
|
Reference in New Issue
Block a user