Whoops, forgot to switch to private methods for newsletters.

This commit is contained in:
Samuel Clay 2016-06-30 13:09:09 -07:00
parent 4733df3f56
commit 4c0d9f8e8c
2 changed files with 3 additions and 3 deletions

View file

@ -60,8 +60,8 @@ class EmailNewsletter:
r.publish(user.username, 'reload:feeds')
story_hash = MStory.ensure_story_hash(params['signature'], feed.pk)
story_content = self.get_content(params)
plain_story_content = self.get_content(params, force_plain=True)
story_content = self._get_content(params)
plain_story_content = self._get_content(params, force_plain=True)
if len(plain_story_content) > len(story_content):
story_content = plain_story_content
story_content = self._clean_content(story_content)

View file

@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.android.tools.build:gradle:2.1.2'
}
}