Skip to content

Commit 40334bd

Browse files
committed
fixing more warnings
1 parent e86afad commit 40334bd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/facebooker/adapters/adapter_base.rb

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def is_for?(application_context)
2626

2727
def initialize(config)
2828
@config = config
29+
@facebook_path_prefix = nil
2930
end
3031

3132
def self.facebooker_config

lib/facebooker/models/user.rb

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class Status
2626
# id, session, (optional) attribute_hash
2727
# attribute_hash
2828
def initialize(*args)
29+
@friends = nil
2930
if (args.first.kind_of?(String) || args.first.kind_of?(Integer)) && args.size==1
3031
self.uid = args.shift
3132
@session = Session.current

0 commit comments

Comments
 (0)