Skip to content

Commit

Permalink
Merge branch 'hotfix/limit-account-name'
Browse files Browse the repository at this point in the history
  • Loading branch information
shouichi committed Sep 2, 2013
2 parents a4614f6 + 173bd78 commit ca94ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/zengin/formatters.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def initialize(deposit)
end

def format
[2, deposit[:bank_code], nil, deposit[:branch_code], nil, nil, deposit[:account_type], deposit[:account_number], deposit[:account_name], deposit[:amount], 0, nil]
[2, deposit[:bank_code], nil, deposit[:branch_code], nil, nil, deposit[:account_type], deposit[:account_number], deposit[:account_name][0, 30], deposit[:amount], 0, nil]
end
end

Expand Down

0 comments on commit ca94ab0

Please sign in to comment.