mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Mode must always be a String
This commit is contained in:
@@ -81,7 +81,8 @@ module Linguist
|
||||
next if delta.binary
|
||||
|
||||
if [:added, :modified].include? delta.status
|
||||
blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, delta.new_file[:mode])
|
||||
mode = delta.new_file[:mode].to_s(8)
|
||||
blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, mode)
|
||||
|
||||
# Skip vendored or generated blobs
|
||||
next if blob.vendored? || blob.generated? || blob.language.nil?
|
||||
|
||||
Reference in New Issue
Block a user