Esempio n. 1
0
        public List <Jodels> ReloadInMain()
        {
            //LoadFirstJodels
            var jodels = Jodel.GetFirstJodels();

            //LoadKarma
            Karma = Jodel.Account.GetKarma();

            return(jodels);
        }
Esempio n. 2
0
        /// <summary>
        /// Does all what Jodel does on opening
        /// </summary>
        public void StartJodel()
        {
            //GetUserConfig
            Jodel.GetUserConfig();

            //LoadFollowedChannels
            Jodel.LoadFollowedChannels();

            //LoadRecommendedChannels
            Jodel.GetRecommendedChannels();

            //LoadKarma
            Karma = Jodel.Account.GetKarma();

            //LoadFirstJodels
            Jodel.GetFirstJodels();
        }