Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #76 from vimeo/VIM-3848
Browse files Browse the repository at this point in the history
Adds self to trim in didSet for VideoSettings
  • Loading branch information
cjlarsen committed Mar 29, 2016
2 parents e158930 + e418080 commit 6243996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VimeoUpload/Upload/Model/VideoSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ class VideoSettings: NSObject
{
didSet
{
self.title = trim(self.title)
self.title = self.trim(self.title)
}
}

var desc: String?
{
didSet
{
self.desc = trim(self.desc)
self.desc = self.trim(self.desc)
}
}

Expand Down

0 comments on commit 6243996

Please sign in to comment.