mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Whoops, forgot to switch to private methods for newsletters.
This commit is contained in:
parent
4733df3f56
commit
4c0d9f8e8c
2 changed files with 3 additions and 3 deletions
|
@ -60,8 +60,8 @@ class EmailNewsletter:
|
||||||
r.publish(user.username, 'reload:feeds')
|
r.publish(user.username, 'reload:feeds')
|
||||||
|
|
||||||
story_hash = MStory.ensure_story_hash(params['signature'], feed.pk)
|
story_hash = MStory.ensure_story_hash(params['signature'], feed.pk)
|
||||||
story_content = self.get_content(params)
|
story_content = self._get_content(params)
|
||||||
plain_story_content = self.get_content(params, force_plain=True)
|
plain_story_content = self._get_content(params, force_plain=True)
|
||||||
if len(plain_story_content) > len(story_content):
|
if len(plain_story_content) > len(story_content):
|
||||||
story_content = plain_story_content
|
story_content = plain_story_content
|
||||||
story_content = self._clean_content(story_content)
|
story_content = self._clean_content(story_content)
|
||||||
|
|
|
@ -4,7 +4,7 @@ buildscript {
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.0.0'
|
classpath 'com.android.tools.build:gradle:2.1.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue