mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
* FIX: Regression introduced in #14715 Wrong method names were used to get Redis keys. * DEV: Remove more stubs
This commit is contained in:
@ -62,7 +62,7 @@ module DiscourseUpdates
|
||||
end
|
||||
|
||||
def last_installed_version=(arg)
|
||||
Discourse.redis.set(last_installed_version, arg)
|
||||
Discourse.redis.set(last_installed_version_key, arg)
|
||||
end
|
||||
|
||||
def latest_version
|
||||
@ -70,7 +70,7 @@ module DiscourseUpdates
|
||||
end
|
||||
|
||||
def latest_version=(arg)
|
||||
Discourse.redis.set(latest_version, arg)
|
||||
Discourse.redis.set(latest_version_key, arg)
|
||||
end
|
||||
|
||||
def missing_versions_count
|
||||
|
Reference in New Issue
Block a user